document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.     $.ajax({
  2.         type: "POST",
  3.         url: "WebService.asmx/GetCities",
  4.         success: function (data) {
  5.             cities = data.text.split(\';\');
  6.             $(\'#location\').autocomplete(cities,{
  7.                     autoFill: true,
  8.                     selectFirst: true,
  9.                     width: \'240px\'
  10.             });
  11.  
  12.         }
  13.     });
');