Ho per necessità interne il bisogno di passarmi il valore del label nel link infondo alla pagina

<a href="javascriptpener.selezionaMacchina(<%response.write(selezione )%>, <%response.write(sotto)%>, <%response.write(marca)%>, <%response.write(macchina)%>);self.close()

allo stato attuale riesco a passare i valori delle select ma non il loro label, devo riuscirci senza passare nuove variabili e quindi speravo funzionasse un request.querystring.value ma non è così, consigli?
ripeto che nel link che trovate sopra al posto di selezione, sotto, marca , macchina dove si trovano gli id delle select ho necessità invece di passargli il label delle select.

grazie a tutti



<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>


<%
dim selezione, strSQLsel, Rssel, strSQL, sotto, macchina, marca, sottocategoriaselezionata, nuovosino, richiesta, nomemacchinanuova
selezione = toInt(Request.querystring("CATEGORIA"))
sotto = toInt(Request.querystring("SOTTO"))
marca = toInt(Request.querystring("MARCA"))
macchina = toInt(Request.querystring("MACCHINA"))
nuovosino = Request.querystring("nuovosino")
richiesta = Request.querystring("RICHIESTA")
nomemacchinanuova = Request.querystring("nomemacchinanuova")
azione = Request.querystring("azione")
%>

<script type="text/javascript">
function cambio(){
document.formMacchine.nuovosino.value = "nuovo";
document.formMacchine.submit();
}

function inserisciNuovaMacchina() {
alert("eccoci");
document.formMacchine.azione.value = "salvaNuova";
document.formMacchine.submit();
}
</script>


<form name="formMacchine" action="" method="get">
<input type="hidden" name="nuovosino" value="">
<input type="hidden" name="azione" value="">
<% if azione = "salvaNuova" then
Cnn.execute "INSERT INTO modelli_macchine (nome, idMarchio_macchina, idMacchina_categoria) VALUES ('" & nomemacchinanuova &"'," & marca & "," & sotto & ")" %>
<script type="text/javascript">
document.formMacchine.azione.value = "no"
document.formMacchine.submit()
</script>
<% else %>
<table border="0" align="center" cellpadding="0" cellspacing="0" class="tabellaForm">
<tr>
<th>Richiesta per</th>
<td>
<select name="RICHIESTA" onchange="form.submit()">
<% if richiesta = "" then %>
<option selected value="0"></option>
<option value="1">Macchine Nuove</option>
<option value="2">Servizi / Matutenzioni</option>
<option value="3">Altre Rivendite</option>
<% end if %>

<% if richiesta = 1 then %>
<option value="0"></option>
<option selected value="1">Macchine Nuove</option>
<option value="2">Servizi / Matutenzioni</option>
<option value="3">Altre Rivendite</option>
<% end if %>
<% if richiesta = 2 then %>
<option value="0"></option>
<option value="1">Macchine Nuove</option>
<option selected value="2">Servizi / Matutenzioni</option>
<option value="3">Altre Rivendite</option>
<% end if %>
<% if richiesta = 3 then %>
<option value="0"></option>
<option value="1">Macchine Nuove</option>
<option value="2">Servizi / Matutenzioni</option>
<option selected value="3">Altre Rivendite</option>
<% end if %>
</select>
</td>
</tr>

<% if richiesta = 1 then %>
<tr>
<th>Categoria</th>
<td>
<% response.write HTML_select("CATEGORIA", selezione, "SELECT id, nota FROM macchine_categorie WHERE macchine_categorie.idCategoriaSup Is Null ", "form.submit()", true, false, 1, "") %>
</td>
</tr>
<% if selezione > 0 then %>
<tr>
<th>Sottocategoria</th>
<td>
<% response.write HTML_select("SOTTO", sotto, "SELECT id, nota FROM macchine_categorie WHERE idCategoriaSup = " & selezione, "form.submit()", true, false, 1, "") %>
</td>
</tr>
<tr>
<th>Marca</th>
<td>
<% response.write HTML_select("MARCA", marca, "SELECT id, nome FROM marchi_macchine", "form.submit()", true, false, 1, "") %>
</td>
</tr>

<% if marca > 0 then %>
<tr>
<th>Macchina</th>
<td>
<% if nuovosino = "nuovo" then %>

<input type="textbox" name="nomemacchinanuova" value="">
Inserisci
<% else
if marca > 0 then response.write HTML_select("MACCHINA", macchina, "SELECT id, nome FROM modelli_macchine WHERE idMacchina_categoria = " & sotto & " and idMarchio_macchina = " & marca, "form.submit()", true, false, 1, "") end if%>
<script type="text/javascript"> document.formMacchine.CATEGORIA.<%response.write(s elezione)%>.text </script>


Salva
Nuovo
<% end if %>
</td>
</tr>
<% end if %>
<% end if %>
<% else %>
<tr>
<td>
<input name="altro" type="text" size="100" maxlength="500">
</td>
</tr>
<% end if%>
</table>

</form>
<% end if %>
<%
%>