
	function changeState(countryCtrl, stateCtrl)
	{
		var countryID = countryCtrl.options[countryCtrl.selectedIndex].value;
		if (countryID == 222)
			stateCtrl.disabled = false;
		else
			stateCtrl.disabled = true;
	}

	function copyBillingDetails(customerForm)
	{
		with(customerForm)
		{
			ShippingName.value      = [FirstName.value, MiddleName.value, LastName.value].join(" ");
			ShippingCompany.value   = Company.value;
			ShippingAddress1.value  = Address1.value;
			ShippingAddress2.value  = Address2.value;
			ShippingPostcode.value  = Postcode.value;
			ShippingCity.value      = City.value; 
			ShippingCountryID.value = CountryID.value;
			ShippingStateID.value   = StateID.value;
		}
	}

