You can dynamically add event handlers using JavaScript. You can add a script that, as soon as the page is loaded, finds all the checkboxes you want, and add handlers there. In jQuery you can write something like this:
$(document).ready(function() {
$(".my_form input[type=checkbox]").change(function() {
});
});
, ! , .