
function SetHidden(CountryID, HiddenCountryID)
{
	var CountryIDControl, HiddenCountryIDControl

	// Set the hidden CountryID value
	CountryIDControl = document.getElementById(CountryID);
	HiddenCountryIDControl = document.getElementById(HiddenCountryID);
	HiddenCountryIDControl.value = CountryIDControl.options[CountryIDControl.selectedIndex].value;
	
}
