$(document).ready(function(){
    //$("#selectionresult").hide(); 
    $("#selection").change( function() {
        $("#selectionresult").hide();
        $("#result").html('<select class="inputSelect"><option>Loading...</option></select>');
        $.ajax({
            type: "POST",
            data: "data=" + $(this).val(),
           // url: "http://72.29.93.65/~amwasia/retrieve-state.php",
            url: "http://www.amwasia.com/retrieve-state.php",
            success: function(msg){
                if (msg != ''){
                    $("#selectionresult").html(msg).show();
                    $("#result").html('');
                }
                else{
                    $("#result").html('<em><select class="inputSelect"><option>No State Found</option></select></em>'); 
                }
            }
        });
    });
	$("#selectionresult").change( function() { 
        $("#selectionresultc").hide();
        $("#resultc").html('<select class="inputSelect"><option>Loading...</option></select>');
        $.ajax({
            type: "POST",
            data: "data=" + $(this).val(),
           // url: "http://72.29.93.65/~amwasia/retrieve-city.php",
			url: "http://www.amwasia.com/retrieve-city.php",
            success: function(msg){
                if (msg != ''){
                    $("#selectionresultc").html(msg).show();
                    $("#resultc").html('');
                }
                else{
                    $("#resultc").html('<em><select class="inputSelect"><option>No City Found</option></select></em>'); 
                }
            }
        });
    });
});
