$(document).ready(function() {$("#poll_form").submit(check_poll_form);});

function check_poll_form()
{
if($("#poll_form :checked").length==0) {alert("Не выбран ни один вариант"); return false};
return true;
}

