function standort_aenderung(standort)
{
    new Ajax.Request('?standorte_wechsel',
    {
        method: 'post',
        parameters: {standort: standort},
        onSuccess: function(transport)
        {
	    $('content').replace(transport.responseText);		
	}        
    }
    );
}
