Change font in dropdown list
To change font in all dropdown lists placed on a page use the following code in Javascript OnLoad event.
Note: Change the values listed in red to match your specific needs.
$.each($("select"),function(i,e){
$(this).css('fontSize', '120%');
});
See also