$(document).ready(function() {
    $("form.newsletter input").change(function() {
        $(this).closest("form").submit();
    });
});
