c# webBrowser 网页中触发下拉列表change事件

// 分类第一列
$('#sp_bsb_sp_s_70').change(function () {
var o = $(this);
if (o.val() != '') {
$.get('/baosong_bs/by_name.json', {a_name: o.val()}, function (data) {
if (data.status == 'OK') {
$('#sp_bsb_sp_s_17, #sp_bsb_sp_s_18, #sp_bsb_sp_s_19, #sp_bsb_sp_s_20').empty();
render_spec_list([]);

        $('#sp_bsb_sp_s_67').empty();
        $("<option>").text("请选择").appendTo($('#sp_bsb_sp_s_67'));
        $.each(data.data, function () {
          $("<option>").attr('data-identifier', this.identifier).attr("value", this.name).text(this.name).appendTo($('#sp_bsb_sp_s_67'));
        });
      }
    }, "json")
  }
});

// 分类第二列
$('#sp_bsb_sp_s_67').change(function () {
  $.get('/a_categories_by_identifier.json', {identifier: $(this).find('option:selected').attr('data-identifier')}, function (data) {
    if (data.status == 'OK') {
      $('#sp_bsb_sp_s_17, #sp_bsb_sp_s_18, #sp_bsb_sp_s_19, #sp_bsb_sp_s_20').empty();
      render_spec_list([]);

      $('<option>').text("请选择").appendTo($('#sp_bsb_sp_s_17'));
      $.each(data.data, function () {
        $('<option>').attr('value', this.name).text(this.name).attr('data-id', this.id).appendTo($('#sp_bsb_sp_s_17'));
      });
    }
  }, 'json');
});

这是一个级联下拉框,第一个事件触发之后,才能获取到第二框的值。如何在后台触发它?