$(function(){
    $.fn.rating.options = { required: true };
    $('.autostar').rating({
        callback: function(value, link) {
            // To submit the form automatically:
            this.form.submit();
            // To submit the form via ajax:
            //$(this.form).ajaxSubmit();
        }
    });
});
