function ChangeDealer() {
	document.getElementById("ShowCountry").innerHTML = "Please Wait, while loading Info";
	Nortech.SupportCountry.ChangeDealer(document.forms[0].Country.options[document.forms[0].Country.selectedIndex].value,CallChangeDealer);
}

function CallChangeDealer(result) {
	document.getElementById("ShowCountry").innerHTML = result.value;
}