$(document).ready(function() {

  $("#country").change(function() {
    if (this.value != 219) {
      $('#stateProvinceLabel').html('State/Province');
    } else {
      $('#stateProvinceLabel').html('State');
    }
  });

});
