function ChangeDealer() {
	document.getElementById("ShowCountry").innerHTML = "Please Wait, while loading Info";
	var country = new String;
	country = document.forms[0].ChangeCountry.options[document.forms[0].ChangeCountry.selectedIndex].value
	
	Identipark.ContactPage.ChangeDealer(country,CallChangeDealer);
}

function CallChangeDealer(result) {
	document.getElementById("ShowCountry").innerHTML = result.value;
}