set value of label jquery code example
Example 1: how to set html label value in jquery
$('#lblName').text('New Text');
Example 2: change label value jquery
// change label valie
$("#labelName").text($val);
// reset combobox value
var html_options = "<option value=''>" + $('#eform_id').find("option").first().text() + "</option>";
$('#eform_id').html(html_options);
$('#eform_id').selectpicker('refresh');