jquery span text code example
Example 1: jquery change span tag text
$('.in-stock span').html("your new string");
Example 2: set span text
$("#spanID").text('your text');
Example 3: jquery change the label of a value in select
$("#FIELDID").find("option:contains(\"OptionLabel\")").text('NewLabel');