just you have to set val to browser textbox id in jquery
for example
<script>
var myvalue = null;
$('.classname').live('click',function(){
myvalue = "thisvalue"+xyz;
$("#myid\\:fragment").val(myvalue);
});
</script>
it will automatically bind value to your bean
hope it's help for you .