				function TeaserRouter(){
				  var hotelid = document.getElementById("destination").value;
				  if (hotelid === "none")
				  { 
				  	alert("Please Select A Hotel"); 
				  	return false; 
				  }
				  else 
				  {
				  	var myformaction = "https://www.reservations-page.com/c00245/h0" + hotelid + "/be.ashx"
				  	document.getElementById("dezerteaser").setAttribute("action",myformaction);
				  	return true;
				  }
				}
