Level 58
One solution is to use JavaScript to listen for a click event on the radio button and then submit the form. Here's an example using jQuery:
$(document).ready(function() {
$('input[type="radio"]').on('click', function() {
$(this).closest('form').submit();
});
});
This code listens for a click event on any radio button on the page. When a radio button is clicked, it finds the closest form element and submits it.