if(navigator.appName=="Microsoft Internet Explorer"){
	if(navigator.userAgent=="Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"){
		$('body').append('<div id="Speicher" class="NoDisp"></div>');
		$('select').bind('focus', function(){
				var AktHtml = $(this).parent().html();
				$(this).parent().html();
				$('#Speicher').html(AktHtml);
				$('#Speicher select').css({"width":"100%"});
				$("label[for='"+$(this).attr('name')+"']").addClass('NoDisp');
				$(this).parent().html($('#Speicher').html());
				$('#Speicher').html();
				$('select').bind("change blur", function(){
					$("label[for='"+$(this).attr('name')+"']").removeClass('NoDisp');
					$(this).css({"width":"60%"});
				});
		});
	}
};
