function setSiteURL() { 
	window.site = "http://www.ayokebali.com/index.php/"; 
}

// ajax combo group onchange
$(document).ready(function(){ 
	setSiteURL();	
	$("#sh_arrival").hide();
	$("#sh_depart").hide();
	$("#cbo_numberofroom").change(function(){ 
		// filter class by group n activate change class
		$.ajax({ 
			type:"POST", 
			url:""+site+"product/combo_person", 
				data: "cbo_numberofroom=" + $("#cbo_numberofroom").val(),
				success:function(response){					
					$("#container_person").html(response);
				},
			dataType:"html" 
			});
		return true; 
	});
});

