function vote(_id){
    $.post('lib/components/survey/vote.php',{id : _id},function(response){
        $('#survey').replaceWith(response);
    });
}



