append itens select input query code example
Example 1: jquery add items to select input
$("#selectList").append(new Option("option text", "value"));
Example 2: add select option jquery
Add option to a select list of picklist
$("#selectList").append(new Option("option text", "value"));
Add option to a select list of picklist