function show_rooms() {
	sel = $('#Rooms').val();
	$('.roominfo').hide();
	for(x=1;x<=sel;x++) {
		$('#roominfo_'+x).show();
		show_ages(x);
	}
}

function show_ages(x) {
	selc = $('#child_'+x).val();
	$('.childinfo_'+x).hide();
	if(selc>0) $("#children_"+x).show();
	else $("#children_"+x).hide();
	for(i=1;i<=selc;i++) $('#childinfo_'+x+'_'+i).show();
}

function init_search() {
	stype = $(".sby:checked").val();
	$(".slocationdiv").hide();
	$(".shoteldiv").hide();
	if(stype=='location') {
		$(".slocationdiv").show();
	}
	if(stype=='hotel') {
		$(".shoteldiv").show();
	}
}