OK, here's one idea:
<script>
function mark(element, item) {
// put some code here to mark or highlight the selection if you want,
// like this:
// document.getElementById(element).style.color = "red";
// search JS forum for posts about it.
document.form1.action = "somescript.cgi?item=" + item;
}
</script>
. . .
<tr id="first" onclick="mark('first', 'country_cd');">
<td>country_cd</td>
<td>list of all country codes</td>
</tr>
<tr id="second" onclick="mark('second', 'status_change_xr');">
<td>status_change_xr</td>
<td>status change cross reference</td>
</tr>
. . .
<form name=form1>
. . .
<input type="submit">
</form>
I think that it is clear enough what goes here. You pass the NAME as a parameter to some server script that will execute accordingly.