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