function show_hide_hotel(){
	var currentStatus = document.getElementById("isshow");
	switch(currentStatus.value){
		case "0":
			document.getElementById("agoda_hotel_selection").style.display = "";
			currentStatus.value = "1";
			document.getElementById("show_hide").innerHTML = "Search all hotels in city";
		break;
		case "1":
			document.getElementById("agoda_hotel_selection").style.display = "none";
			document.getElementById("ddlSelectHotel").selectedIndex = "0";
			currentStatus.value = "0";
			document.getElementById("show_hide").innerHTML = "Search specific hotel";
		break;
	}//end switch
}//end function