$("#txm").find(".checkbox").each(function(){
$(this).click(function(){
var test= $(this).attr("checked");
if(this.checked){
GetData(this.value);
$(this).parent("div").siblings().children(".checkbox").each(function(){
if(test== this.checked){
this.checked = false;
}
});
}
});
});
});