$("#ckb").click(function() {
$("input:checkBox").attr("checked",this.checked);
var $subBox = $("input[name='PARTNER_ID']");
$subBox.click(function(){
$("#ckb").attr("checked",$subBox.length == $("input[name='PARTNER_ID']:checked").length ? true : false);
});
});
$("input:checkBox").attr("checked",this.checked);
var $subBox = $("input[name='PARTNER_ID']");
$subBox.click(function(){
$("#ckb").attr("checked",$subBox.length == $("input[name='PARTNER_ID']:checked").length ? true : false);
});
});