function initialize_standorte(){
	$('#standort_selector').bind('change',function(){
		
		
		$.ajax({ 
					url: "ajax.php", 
					context: document.body,
					type: "POST",
					data: ({module:"senseless", action:"list_location", id:$('#standort_selector').val()}),
					success:function(xml){$('#location_description').html(xml);},
					error:function(xml){alert("Ein Fehler ist aufgetreten. Bitte wenden Sie sich an den Administrator.");}
			});
		
		
		
		});	
		$('#standort_selector').val("16"); 
			$('#standort_selector').change();
}
