// JavaScript Document
function change_hotel_img() {
	if(document.fm_venue.hotel_id.options[0].selected){
	document.getElementById('hotel_img').src="../images/find_venue/sel.jpg";
	}
	if(document.fm_venue.hotel_id.options[1].selected){
	document.getElementById('hotel_img').src="../images/find_venue/sel.jpg";
	}
	if(document.fm_venue.hotel_id.options[2].selected){
	document.getElementById('hotel_img').src="../images/find_venue/beijing.jpg";
	}
	else if(document.fm_venue.hotel_id.options[3].selected){
	document.getElementById('hotel_img').src="../images/find_venue/Dalian.jpg";
	}
	else if(document.fm_venue.hotel_id.options[4].selected){
	document.getElementById('hotel_img').src="../images/find_venue/Minh.jpg";
	}
	else if(document.fm_venue.hotel_id.options[5].selected){
	document.getElementById('hotel_img').src="../images/find_venue/Macau.jpg";
	}
	else if(document.fm_venue.hotel_id.options[6].selected){
	document.getElementById('hotel_img').src="../images/find_venue/Shanghai.jpg";
	}
	else if(document.fm_venue.hotel_id.options[7].selected){
	document.getElementById('hotel_img').src="../images/find_venue/Shenyang.jpg";
	}
	else if(document.fm_venue.hotel_id.options[8].selected){
	document.getElementById('hotel_img').src="../images/find_venue/wuhan.jpg";
	}
	else if(document.fm_venue.hotel_id.options[9].selected){
	document.getElementById('hotel_img').src="../images/find_venue/shunde.jpg";
	}
	else if(document.fm_venue.hotel_id.options[9].selected){
	document.getElementById('hotel_img').src="../images/find_venue/Xian.jpg";
	}
}