Se usi il solito metodo per creare le option:

s = document.nomeForm.nomeSelect;
s.options[s.options.length] = new Option(elementoArray[indice])
// accoda:
s.options[s.options.length -1].style.fontWeight="bold";

ciao