Hey,
I'm not sure if you ask how to do it in JSP or Javascript. Anyway, I can give you a quick hint in Javascript. If it's JSP you need, then I'm afraid I can't help you:
step 1: in the HTML of combo1, you set this attribute: onchange="combo1_selection_changed(this);"
step 2: create the function "combo1_select_changed(combo1)"
There you select the appropriate hard coded values. For each value you wish to append in the combo2 box, you create a new HTML element "option". You then set the value to the desired one, and the innerHTML to either the same value, or something more readable for your visitors. Then you append that option to the optionlist of combo2.
I could have written you a chunk of code, but I don't have enough information. And I also need to know if you meant Javascript or JSP. Something tells me that perhaps you're confusing these two.