function drop_down_list()
{
    var state = $('#ddlTargetState').val();

    if(state == 'ZZ' || state == 'AK') // Alaska and District Columbia have no counties
    {
        //$('#ddlTargetLocation').hide(); // Hide the drop down
        $('#TargetLocation').hide(); // Hide the drop down
        $('#no_county_drop_down').show();
    }
    else
    {
        $('#loading_county_drop_down').show(); // Show the Loading...

        //$('#ddlTargetLocation').hide(); // Hide the drop down
        $('#TargetLocation').hide(); // Hide the drop down
        $('#no_county_drop_down').hide(); // Hide the "no counties" message (if it's the case)
        if (state > '') {
            $.getScript("Script/states/" + state.toLowerCase() + ".js", function() {

                //populate(document.getElementById("ddlTargetLocation"));
                populate(document.getElementById('ctl00_ContentPlaceHolder1_ddlTargetLocation'));
                
                $('#loading_county_drop_down').hide(); // Hide the Loading...
                //$('#ddlTargetLocation').show(); // Show the drop down
                $('#TargetLocation').show(); // Show the drop down
            });
        }
        else {
            $('#loading_county_drop_down').hide(); // Hide the Loading...
            if (state = '') {
                document.getElementById('ctl00_ContentPlaceHolder1_ddlTargetLocation').options.length = 0;
                document.getElementById('ctl00_ContentPlaceHolder1_ddlTargetLocation').options[0] = new Option("", "");
            }
        }
    }
}

function drop_down_list2() {
    var state = $('#ddlCollegeState').val();

        $('#loading_college_drop_down').show(); // Show the Loading...

        $('#College').hide(); // Hide the drop down
        if (state > '') {
            $.getScript("Script/states/State" + state + ".js", function() {

                //populate(document.getElementById("ddlCollege"));
                populate(document.getElementById('ctl00_ContentPlaceHolder1_ddlCollege'));

                $('#loading_college_drop_down').hide(); // Hide the Loading...
                $('#College').show(); // Show the drop down
            });
        }
        else {
            $('#loading_college_drop_down').hide(); // Hide the Loading...
        }
}

$(document).ready(function(){
$("#ddlTargetState").change(drop_down_list);
$("#ddlCollegeState").change(drop_down_list2);
});

$(window).load(drop_down_list);
$(window).load(drop_down_list2);
