I'm having trouble making the code below work, I need to be redirected to a particular page when selecting a city.
Below is the code I'm trying to use:
JavaScript:
<script type="text/javascript" src="http://pastebin.com/raw.php?i=Qi2BcFsP"></script><scripttype="text/javascript">
window.onload = function() {
new dgCidadesEstados({
estado: document.getElementById('estado'),
cidade: document.getElementById('cidade'),
estadoVal: '<%=Request("estado") %>',
cidadeVal: '<%=Request("cidade") %>'
});
}
</script>
HTML:
</head>
<body>
<form id="sistema" name="sistema" method="post" action="">
<label>Estado</label>
<select id="estado" name="estado"></select>
<label>Cidade</label>
<select id="cidade" name="cidade"></select>
</form>
</body>