Buenas tardes chicos, tengo una inquietud acerca de hacer un javascript que me permita ver el origen y la ruta y al seleccionarla me muestre el precio del pasaje o billete... esto es lo que llevo hasta el momento.. pero ya no sé que más hacer...
me ayudan por favor se los agradeceria!
<html>
<head>
<script language="JavaScript">
function Cargar_Destinos(){
var ID = document.form.origen.value;
targetSelect = document.form.destino;
// BORRA LOS VALORES ACTUALES DEL COMBO
while(targetSelect.options.length!=0){
targetSelect.options[0]=null;
}
if(ID == '54') {
targetSelect.options[targetSelect.options.length] = new Option('Cartago','29')
targetSelect.options[targetSelect.options.length] = new Option('Cerritos','31')
}
if(ID == '25') {
targetSelect.options[targetSelect.options.length] = new Option('Cali','28')
}
if(ID == '33') {
targetSelect.options[targetSelect.options.length] = new Option('Montañuela','63')
}
}
</script>
</head>
<body>
<table align="center">
<tr>
<td></td>
</tr>
<tr>
<td>
<form name="form" method="post" action="">
<table>
<tr>
<td colspan="2"><p align="center">Consulta de VIAJES</p></td>
<tr>
<td> <p align="center">Origen: </p></td>
<td> <p>
<select name="origen" class="input" onChange="Cargar_Destinos()">
<option value=25>Bolívar</option>
<option value=54>Buga La Grande</option>
<option value=33>El Dovio</option>
</select>
</p></td>
</tr>
<tr>
<td> <p align="center">Destino:</p></td>
<td> <p>
<select name="destino" class="input">
</select>
</p></td>
</tr>
<tr>
<td colspan="2"> <div align="center">
<input type="submit" name="Submit4" value="Consultar">
</div></td>
</tr>
</form>
</table>
</body>
</html>