$(function(){

$('#event-4').click(function(){
   
   var checked = $(this).attr('checked');
   if (checked != undefined)   {
      if ($('p#nout').size()  == 0)
        $('#event-5').before('<p id="nout">Есть ли у вас возможность посетить семинар со своим ноутбуком? <input type="radio" name="nout" value="1" checked="1" /> Да <input type="radio" name="nout" value="2" /> Нет </p>');  
   } else {
      $('p#nout').remove();
   }

});

});

