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