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/c00287/h0" + hotelid + "/be.ashx";                                                                     
            document.getElementById("teaserForm").setAttribute("action", myformaction);
            return true;
        }
    }

