Are you sure it's not there anymore? Looking at your code, you have 5 radio buttons, but the word north never appears on the browser, but the word south appears twice. Maybe south is appearing twice, but one of those has the value of N for north, so you think it's not appearing.
I'm having trouble following your ocde or what this is even supposed to do. They click one of the radio buttons, then you submit the form. Does the form submit to the same page, or a seperatage page? What does it do when submitted? Are these radios still there?
Also, i see your form tag surrounding you radio buttons, but I don't see the dropdown menu that you're talking about. You said they're both within the same form tag?
Ok wait a sec (sorry, I'm typing as I look at your code). I just saw your drop down (the select) Why do you have radio buttons within your select? YOu need to fill your select with values, end it, then the radios are seperate from that. For example:
<form method="post" action=". . .">
<select name="bla">
<option value="1">One</option>
<option value="2">Two</option>
<option value="2">Three</option>
</select><br><br>
<input type="radio" name="kateg" value="N">North<br>
<input type="radio" name="kateg" value="S">South<br>
<input type="radio" name="kateg" value="E">East<br><input type="radio" name="kateg" value="W">West<br>
</form>
See how they are seperate? For some reason, you have radios within a select tag.
And for the javascript portion, onClick isn't valid with a select. You'd want to use onChange.
Cgraz