Codice PHP:
var myoption "";
    for(var 
value in myarray)
    {
        
myoption document.createElement("option");
        
myoption.setAttribute("value"value);
        var 
text document.createTextNode(myarray[value]);
        
myoption.appendChild(text);
        
document.getElementById("myselect").appendChild(myoption);
        
    } 
Grazie per l'utile appunto.