append text to all option value code example
Example 1: jquery add items to select input
$("#selectList").append(new Option("option text", "value"));
Example 2: jquery insert option into select
$('#ID_DO_SELECT').append('<option value="valor">texto</option>');