set label jquery select code example
Example 1: jquery selected label option
$('select option:selected').text();
Example 2: jquery change the label of a value in select
$("#FIELDID").find("option:contains(\"OptionLabel\")").text('NewLabel');
$('select option:selected').text();
$("#FIELDID").find("option:contains(\"OptionLabel\")").text('NewLabel');