/*
 * $Author: dbibbens $
 * $Revision: 1.4 $
 * $Date: 2006/10/06 18:29:51 $ 
 * $Source: /home/cvs/insurance/mortgage/local/lib/functions.js,v $
 */

var selected = false;

function change_state(select, aid, type)
{
  var state = select.options[select.selectedIndex].value;
  
  if(!type) {
    var type_select = document.getElementById('type');
    var type = type_select.options[type_select.selectedIndex].value;
  }

  if(state && type) {
    document.location = 'results.xsl?state=' + state + '&type=' + type + 
      '&aid=' + aid;
  }
}
