var $j = jQuery.noConflict();
	
$j(document).ready(function(){
				
	// Online booking validation
	if ( $j("#destination_id").val() && $j("#cost_id").val() )
	{
		$j("#bookTourEvent").show();
	}
	else
	{
		$j("#bookTourEvent").hide();
	}
	
	// Initialize insurance price
	if ($j('form #idInsurance').is(':checked')) {
		$j("#insurance").val($j('#insuranceValue').val());
	} else {
	   $j("#insurance").val('0.00');
	}
	
	// Update Insurance field if selected
	$j('form #idInsurance').click(function() { 
		if ($j('form #idInsurance').is(':checked')) {
		  $j("#insurance").val($j('#insuranceValue').val());
		} else {
			$j("#insurance").val('0.00');
		}
	});
	
	$j("#schoolName_id").html($j("#schoolName_id option").sort(function (a, b) {
          return a.text == b.text ? 0 : a.text < b.text ? -1 : 1
     })
  );
   
});




