Adicionar opções para selecionar a caixa dinamicamente jQuery
$("#selectList").append(new Option("option text", "value"));
Grotesque Goose
$("#selectList").append(new Option("option text", "value"));
var select = document.getElementById("example-select");
select.options[select.options.length] = new Option('Text 1', 'Value1');