how to add drop down option in jquery code example
Example 1: jquery add items to select input
$("#selectList").append(new Option("option text", "value"));
Example 2: To append dropdown option using jquery
$('#ddlGroup').append(new Option('Select group', '0'));