Jquery and jsp

Jquery and jsp

Hallo i am new in Jquery and allso in JSP

i have build a function in jquery
  1. $(document).ready(function() {
  2. var work;
  3. $('#subject').keyup(function(e) {
  4. work = $('#subject').val();
  5. if(e.which == 13)
  6. work +="  <br/>  ";
  7. });
  8. });
My question is ,
How can i use the variable "work"  in JSP
for exemple if i want to setAttribute that the content of the attribute will takken from the variable "work"
is it possible?
and ides?