﻿ $(document).ready(function()
 {
 

       $("#dropstates2").change(function()
        {
            if($(this).children("option:selected").val() == -1)
            {
                 
                  $("#divdropcity span").text("Loading...");
                  loadCities();
                 
            }
           
       });
      
 });
// City Page On Click Other Cities Call Function 
function loadCities()
{
    $("#dropstates2").load("CitiesTextFile.txt");
    $("#divdropcity span").css("border","1px solid red");
    $("#arrowdiv").html("<img src='images/arrow.gif' /> <span style='color:green;font-size:10px;'>Other Cities Loaded</span>");
    $("#dropstates2").children("option:selected").text("Choose Your City Now");
    $("#dropstates2").change(function()
    { $("#arrowdiv").html("");
    $("#divdropcity span").css("border","1px solid #3391D1");
    });
}
