Hola
Porque no me agrega los eventos al elemento option de un select?, todo lo demas
lo agrega como los atributos id y name correctamente
//combobox es un elemento select
opcion=document.createElement("option");
opcion.name="opt" + i;
opcion.id="opt" + i;
opcion.innerText=ArrayPalabra[i];
opcion.attachEvent('onclick', lafuncion);
comboBox.appendChild(opcion);