$(this).iCheck('check');
//啟用禁用上級編號
$('#OnPar').on('ifUnchecked', function (event) {
$("#tbParBudCode").prop('disabled', true);
$("#tbParBudCode").trigger("chosen:updated");
});
$('#OnPar').on('ifChecked', function (event) {
$("#tbParBudCode").prop('disabled', "");
$("#tbParBudCode").trigger("chosen:updated");
});