jQuery(document).ready(function(){
	/* ## Toggle */
	$('#abholort_x').click(function() {
		var wert = $(this).val();
		if(wert == "Flughafen")
		{
			$(".abholortFlughafen").show();
			$(".abholortHotel").hide();
		}
		if(wert == "Hotel")
		{
			$(".abholortFlughafen").hide();
			$(".abholortHotel").show();
		}
	});
	$('#zielort_x').click(function() {
		var wert = $(this).val();
		if(wert == "Flughafen")
		{
			$(".zielortFlughafen").show();
			$(".zielortHotel").hide();
		}
		if(wert == "Hotel")
		{
			$(".zielortFlughafen").hide();
			$(".zielortHotel").show();
		}
	});
	/* Toggle ## */	
});
