//Checks to make sure a state is set if the US or Canada is selected
function ToggleStates() {
	var pfrmCountry = document.forms[1];
	var intCountryId = pfrmCountry.cboCountry.value;

	if (intCountryId == '10536' || intCountryId == '10724')
	{
		pfrmCountry.cboState.disabled = false;
	}
	else
	{
		pfrmCountry.cboState.disabled = true;
	}
	
}