anywayAnyway, you propablyprobably need somethignsomething like this:
var val = $('#c_b :checkbox').is(':checked').val();
$('#t').val( val );
This will get the value of the first checked checkbox on the page and insert that in the textarea with id='textarea'id='textarea'.
Note that in your example code you should put the checkboxes in a form.