I have the following function
function reporte() {
var string_request;
Riesgo = document.forms.form1.Riesgo.options[document.forms.form1.Riesgo.selectedIndex ].value;
Emisora = document.getElementById('Emisora').value;
string_request = "reporte.asp?Riesgo="+Riesgo+"&Emisora="+Emisora;
string_request = string_request.replace(/ /g,"%20");
parent.reporte.document.location=string_request;
}
But Issuer sends it to me empty, it does not obtain the value that I enter in the textbox