var editProfile = '' ;
function getCity(){
	countryCode = arguments[0];
	type = arguments[1];
	editProfile = arguments[2];
	AJAXGet(domainName+'request/getCity.htm?countryCode='+countryCode+'&type='+type+'&mm='+Math.floor(1000000*Math.random()),handleInfo,false,true,"city");
} 
function handleInfo(sText){
		document.getElementById("city").innerHTML = sText;
}
