function updatelist()
{


user_sel = document.forms['form1'].sel_dest.value;

if (user_sel=="Dubai")
{
	document.forms['form1'].sel_hotel.options.length =null;
document.forms['form1'].sel_hotel.options[0] = new Option('Habtoor Grand Resort & Spa','https://reservations.ihotelier.com/istay.cfm?hotelid=13063&languageid=1');
document.forms['form1'].sel_hotel.options[1] = new Option('Metropolitan Palace Hotel','https://booking.ihotelier.com/istay/istay.jsp?hotelid=72969&languageid=1');
document.forms['form1'].sel_hotel.options[2] = new Option('Metropolitan Hotel','https://booking.ihotelier.com/istay/istay.jsp?hotelid=72970&languageid=1');
document.forms['form1'].sel_hotel.options[3] = new Option('Metropolitan Hotel Deira','https://booking.ihotelier.com/istay/istay.jsp?hotelid=72955&languageid=1');
}
else if (user_sel=="Beirut")
{
	document.forms['form1'].sel_hotel.options.length =null;
document.forms['form1'].sel_hotel.options[0] = new Option('Metropolitan Palace Hotel','https://booking.ihotelier.com/istay/istay.jsp?hotelid=73800&languageid=1');
document.forms['form1'].sel_hotel.options[1] = new Option('Habtoor Grand Hotel Convention Center & Spa','https://booking.ihotelier.com/istay/istay.jsp?hotelid=73795&languageid=1');

}

else
{
document.forms['form1'].sel_hotel.options.length =null;
}





}

function update_rooms_beirut()
{

//Resets the rooms to 1 as the max parameter

user_sel = document.forms['form1'].sel_hotel.value;

if (user_sel=="https://indecorp.ibe.netbooker.com/web/DisplaySinglePropertySearch.do")
{

document.forms['form1'].txt_rooms.options.length =null;
document.forms['form1'].txt_rooms.options[0] = new Option('1','1');
}
else
{

document.forms['form1'].txt_rooms.options.length =null;
document.forms['form1'].txt_rooms.options[0] = new Option('1','1');
document.forms['form1'].txt_rooms.options[1] = new Option('2','2');
document.forms['form1'].txt_rooms.options[2] = new Option('3','3');

}


}