, SELECT , , . . , , SELECT, .
$.each($('select'), function(i,v) {
theElement = $(v);
theID = theElement.attr('id');
theElement.css('background-color', 'green');
theElement.css('color', 'white');
$('#'+theID).find('option').css('background-color', 'white');
$('#'+theID).find('option').css('color', 'black');
$('#'+theID).find('option:selected').css('background-color', 'green');
$('#'+theID).find('option:selected').css('color', 'white');
});