您应该添加value选项并尝试匹配这些值onchange。请参阅下面的实现,让我知道它是否适合您。
编辑:添加了几行来更新插件选择。
演示:http:  //jsfiddle.net/vUkQg/3/
  注意:下面的方法可以将任意数量的下拉列表与相同的类关联起来value。(脚本没有变化)http://jsfiddle.net/vCE4Y/18/
HTML: 
<select id="second" class="chzn-select" style="width:100px">
  <option value="1"> mr</option>
  <option value="2"> mrs</option>
</select>
<select id="gender" class="chzn-select" style="width:100px">
  <option value="1"> male</option>
  <option value="2"> female</option>
</select>
JS:
$(function() {
    $(".chzn-select").chosen().change(function() {
        var val = $(this).val();
        $('.chzn-select').val(val);
        $('.chzn-select').not(this).each(function () {                       
            var $chzn = $('#' + this.id + '_chzn');
            var $li = $chzn.find('li');            
            $li.removeClass('result-selected');  
            var selectedLi = $li.eq(val - 1);
            selectedLi.addClass('result-selected');
            $chzn.find('a.chzn-single span').html(selectedLi.html());            
            //update selected result in plugin
            var $data = $(this).data('chosen');
            $.each($data['results_data'], function (idx, el) {
                if (idx == val-1) {
                    el.selected = true;
                    $data.result_single_selected = selectedLi;
                } else {
                    el.selected = false;
                }
            });
        });
    });
});