function selRegion(){
	obj = document.getElementById("decoy");
	obj.style.display = 'none';
	obj = document.getElementById("selEM");
	obj.style.display = 'none';
	obj = document.getElementById("selEE");
	obj.style.display = 'none';
	obj = document.getElementById("selGL");
	obj.style.display = 'none';
	obj = document.getElementById("selNE");
	obj.style.display = 'none';
	obj = document.getElementById("selNW");
	obj.style.display = 'none';
	obj = document.getElementById("selSC");
	obj.style.display = 'none';
	obj = document.getElementById("selSE");
	obj.style.display = 'none';
	obj = document.getElementById("selSW");
	obj.style.display = 'none';
	obj = document.getElementById("selWA");
	obj.style.display = 'none';
	obj = document.getElementById("selWM");
	obj.style.display = 'none';
	selReg = document.optionform.region.options[document.optionform.region.selectedIndex].value;
	obj = document.getElementById("sel" + selReg);
	obj.style.display = 'inline';
}
function formSubmit(){
		if(document.optionform.region.options[document.optionform.region.selectedIndex].value == "")
			alert("Please choose a Region of the Country");
		else formSubmit2(); }

function formSubmit2(){
		region = document.optionform.region.options[document.optionform.region.selectedIndex].value;
		if(document.optionform.layout.options[document.optionform.layout.selectedIndex].value == "")
			alert("please choose a Room Layout");
		else if(document.optionform.capacity.options[document.optionform.capacity.selectedIndex].value == "")
			alert("please choose a Room Capacity");
		else document.optionform.submit(); }