function UpdateState(sControl){
	var stateDD = $("CustomerAddressProfile_CustomerAddressProfileState");
	if(sControl.selectedIndex != 0)
		stateDD.selectedIndex = stateDD.options.length - 1;
	else if(stateDD.selectedIndex == stateDD.options.length - 1)
		stateDD.selectedIndex = 0;
}

function UpdateCountry(sControl){
	var countryDD = $("CustomerAddressProfile_CustomerAddressProfileCountryID");
	if(sControl.selectedIndex != 0 && sControl.selectedIndex != (sControl.options.length - 1))
		countryDD.selectedIndex = 0;
}


