$(document).ready(function() {
  $('label').bind('click', function() {
    var id = '#' + $(this).attr('for');
    var target = $(id).get(0);
    target.checked = !target.checked;
    return false;
  });
});