$(function(){
    $('.stars-radio').stars();
    $('.stars-select').stars({
        cancelShow: false,
        inputType: "select",
        oneVoteOnly: true,
        captionEl: $(".caption"),
        callback: function(ui, type, value) {
            $.get(value, {}, function(data) {
                console.log(data);
            })
        }
    });
});
