function return_city_long_lat()
{
	var array_check = document.getElementsByName("city_select[]");
	var city_sl = "";
	for ( var i=0; i < array_check.length; i++)
		 {
				 if (array_check[i].checked == true) 
				 {
					  city_sl  = array_check[i].value;
				 }
		 }
		 
	if (city_sl != "") {
		
		document.advanced_search.city_lang.value = city_sl;
		var splti_state = city_sl.split("@@");
		document.advanced_search.stateprov.value = splti_state[2];
		document.advanced_search.city.value = splti_state[4];
		selectOptions(splti_state[3]);
		
	} else {
		
		alert("Please select City");
		return false;
		
	}
	tb_remove();
}

function remove_thickbox()
{
	tb_remove();
}

function selectOptions(country_select) {
	var i;
	for( i = document.getElementById('countrycode').options.length-1; i >= 0; i--) {
		if(document.getElementById("countrycode").options[i].value == country_select)
			document.getElementById("countrycode").options[i].selected=true;
	}
}
