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