jquery add item to select code example
Example 1: jquery add option to select
//add option to select with jQuery
$('#selectID').append($('<option>', {
value: 1,
text: 'Option Text'
}));
Example 2: jquery add items to select input
$("#selectList").append(new Option("option text", "value"));