$(document).ready(
function()
{
$("input:checkbox").change(
function()
{
if( $(this).is(":checked") )
{
$("#formName").submit();
}
}
)
}
);
Though it would probably be better to add classes to each of the checkboxes and do
$(".checkbox_class").change();
so that you can choose which checkboxes submit the form instead of all of them doing it.