
function countryChange() {

	// set loading message in size drop down
  $('#state').html("<option value=''>Loading...</option>");

  // load new options
  var ajaxUrl = "/lookupFunctions/getStateOptions.php?country=" + escape( $('#country').val() ); 

  $.get(ajaxUrl, function(html){
	  $('#state').html( html );
  });
}

function stateChange() {

	// set loading message in size drop down
  $('#results').html("Loading Results...");

  // load new options
  var ajaxUrl = "/lookupFunctions/getDistributorList.php?country=" + escape( $('#country').val()) + "&state=" + escape( $('#state').val() ); 
  $.get(ajaxUrl, function(html){
	  $('#results').html( html );
  });
}


