function getpoll(pid) {
    $.post("/poll_process.php", {
        action: "showpoll",
        id: pid
    }, function (data) {
        $("#pollcontainer").html(data)
    })
}
