You need to place it somewhere so it could be pushed to your JSP page. A hidden field is a good option:
... // My code to get the value.
document.getElementById("nn").value = combo.getValue();
... you could submit the form here if you want
The value is : //to be displayed here
Other possibility might be using AJAX.
One way or another, I would suggest you reading a little bit more on general topics about Web Applications to differentiate JSP/JavaScript/POST/GET/CSS/HTML and other basic concepts.
Good luck!