function changeState()
{
	var obCountry = document.forms[0].curCountry;
	var obStates = document.forms[0].usStates;
	var obProvinces = document.forms[0].canProvinces;

	var selectedIndex = obCountry.selectedIndex;
	if ((obCountry.options[selectedIndex].text == "CANADA") || (obCountry.options[selectedIndex].text == "Canada"))
	{
		obStates.name = "";
		obStates.style.display = "none";
		obProvinces.style.display = "";
		obProvinces.name = "curState";
	}
	else
	{
		obProvinces.style.display = "none";
		obProvinces.name = "";
		obStates.name = "curState";
		obStates.style.display = "";
	}
	
}