function drop_down_list()
{
    var state = $('#state').val();

	// swaping the values for the area of the city
     if(state == ''){state = 'all';}
	if(state == 'Zone A'){state = 'nw';}
	if(state == 'Zone B'){state ='ne';}
	if(state == 'Zone C'){state ='sw';}
	if(state == 'Zone D'){state ='se';}
	
    $('#loading_county_drop_down').show(); // Show the Loading...
	
    $('#county_drop_down').hide(); // Hide the drop down
    $('#no_county_drop_down').hide(); // Hide the "no counties" message (if it's the case)

	// get the script file
    $.getScript("http://calgaryhomes.pro/template/open_realty_lite/include/js/quadrants/"+ state.toLowerCase() +".js", function(){
	
    populate(document.form.county);
	
	$('#loading_county_drop_down').hide(); // Hide the Loading...
	
	$('#county_drop_down').show(); // Show the drop down
	 });
//}
}

$(document).ready(function(){
$("#state").change(drop_down_list);
});

$(window).load(drop_down_list);


