Perdón aqui esta el codigo en solo HTML, no se que pasa la verdad, te agradecería quelo revisaras y me dijeras cual es el problema.
Código HTML:
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>Captura de Presupuesto</title>
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body>
<center><div class="informacion"><h3>CARGAR PRESUPUESTO</h3></div></center> <br>
<br>
<form method="post" name="frmadprespro" action="index.php">
<table width="50%">
<tr>
<td>
Sucursal:
</td>
<td>
<select name=" slsucursal" style="width:250" onblur="CONSULTA('frmadprespro')">
<option></option>
<option>Armenia</option>
</select>
</td>
</tr>
</table>
<br>
<table width="100%">
<tr>
<td align="center" bgcolor="">
<font size="3">
#
</font>
</td>
<td colspan="2" align="center" bgcolor="">
<font size="3">
Producto
</font>
</td>
<td align="center" bgcolor="">
<font size="3">
Unidad
</font>
</td>
<td align="center" bgcolor="">
<font size="3">
Valor
</font>
</td>
<td align="center" bgcolor="">
<font size="3">
Enero
</font>
</td>
<td align="center" bgcolor="">
<font size="3">
Febrero
</font>
</td>
<td align="center" bgcolor="">
<font size="3">
Marzo
</font>
</td>
<td align="center" bgcolor="">
<font size="3">
Abril
</font>
</td>
<td align="center" bgcolor="">
<font size="3">
Mayo
</font>
</td>
<td align="center" bgcolor="">
<font size="3">
Junio
</font>
</td>
<td align="center" bgcolor="">
<font size="3">
Julio
</font>
</td>
<td align="center" bgcolor="">
<font size="3">
Agosto
</font>
</td>
<td align="center" bgcolor="">
<font size="3">
Septiembre
</font>
</td>
<td align="center" bgcolor="">
<font size="3">
Octubre
</font>
</td>
<td align="center" bgcolor="">
<font size="3">
Noviembre
</font>
</td>
<td align="center" bgcolor="">
<font size="3">
Diciembre
</font>
</td>
<input type="hidden" name="pasa1" value="0">
<input type="hidden" name="inicio" value="0">
</body>
</form>
<script>
function CONSULTA(form)
{
//frm.flet.value = 1;
//frm.costo.value = 0;
alert("hoLA");
frm.inicio.value = 1;
document.forms[form].submit();
}
</script>
</html>