var editProfile = '' ;

function getCity(){
	countryCode = arguments[0];
	type = arguments[1];
	editProfile = arguments[2];
	//AJAXGet(domainName+'getCity.htm?countryCode='+countryCode+'&type='+type+'&mm='+Math.floor(1000000*Math.random()),handleInfo,false,true,"city");
	jQuery.ajax({
		type: "POST",
		url: domainName+'getCity/view/',
		data: 'countryCode='+countryCode+'&type='+type+'&mm='+Math.floor(1000000*Math.random()),
		success: function (msg){
				handleInfo(msg);
		}
	}
	);
	//AJAXGet(domainName+'getCity/view/countryCode/'+countryCode+'/type/'+type+'/mm/'+Math.floor(1000000*Math.random()),handleInfo,false,true,"city");
}

function handleInfo(sText){
		document.getElementById("city").innerHTML = sText;
}
