I know this asks for a Jquery solution, but I just thought I'd point out that it is very easy to toggle this in plain javascript.
var element = document.getElementById("estado_cat");
element.checked = 1;
It will work in all current and future versions.