function setFormOptions() {
var room = (jQuery.url.param("RoomType"));
var book = (jQuery.url.param("Booking"));
switch (room)
{
case "Single":
  $("select#RoomType option[selected]").removeAttr("selected");
  $("select#RoomType option[value='Standard Single Room']").attr("selected", "selected");
  document.getElementById("Rooms").setAttribute("class", "LV_valid_field");
  $("select#BE option[selected]").removeAttr("selected");
  $("select#BE option[value='Booking']").attr("selected", "selected");
  document.getElementById("Booked").setAttribute("class", "LV_valid_field");
  break;
  case "DeluxeSingle":
  $("select#RoomType option[selected]").removeAttr("selected");
  $("select#RoomType option[value='Deluxe Single Room']").attr("selected", "selected");
  document.getElementById("Rooms").setAttribute("class", "LV_valid_field");
  $("select#BE option[selected]").removeAttr("selected");
  $("select#BE option[value='Booking']").attr("selected", "selected");
  document.getElementById("Booked").setAttribute("class", "LV_valid_field");
  break;
  case "Double":
  $("select#RoomType option[selected]").removeAttr("selected");
  $("select#RoomType option[value='Double Room']").attr("selected", "selected");
  document.getElementById("Rooms").setAttribute("class", "LV_valid_field");
  $("select#BE option[selected]").removeAttr("selected");
  $("select#BE option[value='Booking']").attr("selected", "selected");
  document.getElementById("Booked").setAttribute("class", "LV_valid_field");
  break;
  case "Twin":
  $("select#RoomType option[selected]").removeAttr("selected");
  $("select#RoomType option[value='Twin Room']").attr("selected", "selected");
  document.getElementById("Rooms").setAttribute("class", "LV_valid_field");
  $("select#BE option[selected]").removeAttr("selected");
  $("select#BE option[value='Booking']").attr("selected", "selected");
  document.getElementById("Booked").setAttribute("class", "LV_valid_field");
  break;
  case "Family":
  $("select#RoomType option[selected]").removeAttr("selected");
  $("select#RoomType option[value='Family Room']").attr("selected", "selected");
  document.getElementById("Rooms").setAttribute("class", "LV_valid_field");
  $("select#BE option[selected]").removeAttr("selected");
  $("select#BE option[value='Booking']").attr("selected", "selected");
  document.getElementById("Booked").setAttribute("class", "LV_valid_field");
  break;
  case "Deluxe":
  $("select#RoomType option[selected]").removeAttr("selected");
  $("select#RoomType option[value='Deluxe Room']").attr("selected", "selected");
  document.getElementById("Rooms").setAttribute("class", "LV_valid_field");
  $("select#BE option[selected]").removeAttr("selected");
  $("select#BE option[value='Booking']").attr("selected", "selected");
  document.getElementById("Booked").setAttribute("class", "LV_valid_field");
  break;
  case "Executive":
  $("select#RoomType option[selected]").removeAttr("selected");
  $("select#RoomType option[value='Executive Room']").attr("selected", "selected");
  document.getElementById("Rooms").setAttribute("class", "LV_valid_field");
  $("select#BE option[selected]").removeAttr("selected");
  $("select#BE option[value='Booking']").attr("selected", "selected");
  document.getElementById("Booked").setAttribute("class", "LV_valid_field");
  break;
default:
  $("select#RoomType option[value='']").attr("selected", "selected");
};
}
