		$(function() {
    			$('a[href^=http]').click( function() {
        			window.open(this.href);
        			return false;
    			});
			});
			
		function checkServiceType(){
		
			if ($('#service').val() == 'Wait-Return') { 
				$('#wait-section').show(); 
			} 
			else { 
				$('#wait-section').hide(); 
			}
			if ($('#service').val() == 'Meet-and-Greet') { 
				$('#airport-pickup').show(); 
				$('#default-pickup').hide();
			} 
			else { 
				$('#airport-pickup').hide();
				$('#default-pickup').show(); 
			}	
		}
