$(function(){
$("form[name=testForm4]").parents(".frm").nextAll(".frm").andSelf().delegate(":checkbox", "click", function(){
var a = $(this).parents(".frm").find("select");
if(this.checked) a.attr("disabled", "true");
else a.removeAttr("disabled");
});
});