jQuery(document).ready(
	function(){
	
	$("[name=select]").change(function(){
							window.location.href=$(this).val();
							});
	$("[name=select2]").change(function(){
							window.location.href=$(this).val();
							});
	
	$("[name=requireAccomodation]").click(function(){
								if ($(this).attr("checked")==true)
									$("#accomodation_form").fadeIn("slow");
								else
									$("#accomodation_form").fadeOut("slow");
								});
	
	});
