how to add values to select box using jquery 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 insert option into select
$('#ID_DO_SELECT').append('<option value="valor">texto</option>');
Example 3: add select option jquery
Add option to a select list of picklist