jQuery(document).ready( function($){
	
	// selects the disabled element and colors them correctly, needed for IE6
	$("option:disabled").css ('color', '#808080');
			
});

