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

    if(city == '' ) // Alaska and District Columbia have no counties
    {
    $('#accom_drop_down').hide();
    $('#no_accom_drop_down').show();
    }
    else
    {
    $('#loading_accom_drop_down').show(); // Show the Loading...
	
    $('#accom_drop_down').hide(); // Hide the drop down
    $('#no_accom_drop_down').hide(); // Hide the "no counties" message (if it's the case)

    $.getScript("js/citys/"+ city.toLowerCase() +".js", function(){

    populate(document.form.accom);

 	$('#loading_accom_drop_down').hide(); // Hide the Loading...
	$('#accom_drop_down').show(); // Show the drop down
    });
}
}

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

$(window).load(drop_down_list);