document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.     [WebMethod]
  2.     public string GetCities(string CityName) {
  3.         string[] Cities = new string[] { "Jerusalem", "Beer-Sheva", "Krayot", "Ashkelon", "Kiryat-Gat" };
  4.         string result="";
  5.         foreach(string str in Cities )
  6.         {
  7.             if (str.ToLower().Contains(CityName))
  8.             {
  9.                 result += str + ";";
  10.             }
  11.  
  12.  
  13.         }
  14.         return result;
  15.     }
');