Hola otra vez:
Otra cosa que puedes hacer es poner un id, y al llamar a la función, poner this.id, y manejarlo con getElementById...
<SELECT
id="firstList" name="firstList" onclick="newOptionSelected(this.id)">
y luego:
function newOptionSelected(e){
document.getElementById("e"). options[document.getElementById("e").selectedIndex].style.background="FF00FF"
}
Saludos