// Low Cost Cabs JavaScript Document
	$(document).ready(function(){
							   
		function hide_errors() {						   
			
			$('#error_enter_from').hide();
			$('#error_enter_to').hide();
			$('#error_match').hide();
			
		}
		
		hide_errors();
			
		$('#book_form_submit_button').click(function() {
					
			hide_errors();		
					
			if($('#from').val()=='From >>' && $('#to').val()=='To >>') {
						
				$('#error_enter_from').show();
				$('#error_enter_to').show();
				return false;
			}
			
			if($('#to').val()=='To >>') {
						
				$('#error_enter_to').show();
				return false;
			}
			
			if($('#from').val()=='From >>') {
				
				$('#error_enter_from').show();
				return false;
			}
			
			if($('#from').val()==$('#to').val()) {
			
				$('#error_match').show();
				return false;
			}
			
			
		
		});
		
		
				
				
				
				
				
				
				
				
	});