function adults_select(){
	sVal = document.formx.adults.options[document.formx.adults.selectedIndex].value;

	if(sVal !== ''){
			document.getElementById('adults-td').style.visibility='visible';
	} 
}

function children_select(){
	chil = document.formx.children.options[document.formx.children.selectedIndex].value;

		if(chil !== ''){
	document.getElementById('children-td').style.visibility='visible';
	} 
}
function showcontent(id){
	document.getElementById("Hotel").style.display = "none";
	document.getElementById("Resort").style.display = "none";
	document.getElementById(id).style.display = "";
}