function DoneAutocomlete(obj) { 
                  $("#continentList").val(obj.CountryNo);
                  ContinentListOnChange(obj.CityNo);
                                 }

var selectedLang = $('#langList').val();
	var options_xml = {
		script: function (input) { return "include/au.php?input="+encodeURIComponent(input)+"&lang="+selectedLang },
		varname:"input",
		cache : true,
        delay : 100,
        timeout : 1500,
        callback : DoneAutocomlete
	};
	var as_xml = new bsn.AutoSuggest('XmlCityBox', options_xml);