$(document).ready(function(){

	currenttown = '';
	optionhtml = '';
	$('#uid33').find('option').each(function(i) {
		teile = $(this).text().split(">");
		if (currenttown != '' && currenttown != teile[0]) {
			optionhtml += '</optgroup>';
		}
		if (currenttown != teile[0]) {
			optionhtml += '<optgroup label="'+teile[0]+'">';
		}
		optionhtml += '<option value="'+teile[0]+': '+teile[1]+'">'+teile[1]+'</option>';
		currenttown = teile[0]
	});
//	alert(optionhtml);
	$('#uid33, #uid11').html(optionhtml);
	$('#uid33').prepend('<option value="" selected="selected">Filiale wählen...</option>');
	$('#uid11').prepend('<option value="" selected="selected">Filiale wählen...</option>');


});
