$(function() {
	$('ul.dropdown').each(function() {
		var options = '';
		$(this).find('a').each(function() {
			options += '<option value="' + $(this).attr('href') + '">' + $(this).text() + '</option>';
		});
		
		$(this).after('<select class="dropdown" onchange="if (this.value) location.href=this.value; return false;"><option>&ndash; Bitte wählen Sie ein Unternehmen &ndash;</option>' + options + '</select>');
		$(this).remove();
	});
});