   function TeaserRouter(){
                                 var hotelid = document.getElementById("destination").value;
                                 if (hotelid === "1")
                                 { 
                                       alert("Please select a property in the drop down list."); 
                                       return false; 
                                 }                              else 
                                 {
                                       var myformaction = "https://www.reservations-page.com/c00291/" + hotelid + "/be.ashx"
                                         document.getElementById("teaserForm").setAttribute("action",myformaction);
                                       return true;
                                 }
                               }
 

 

