JSFiddle - React, Tailwind, and code Playground
HTML
<script type="text/javascript" src="http://pastebin.com/raw.php?i=Qi2BcFsP"></script>
<script type="text/javascript">
window.onload = function() {
new dgCidadesEstados({
estado: document.querySelector('.estado'),
cidade: document.querySelector('.cidade'),
estadoVal: '<%=Request("estado") %>',
cidadeVal: '<%=Request("cidade") %>'
});
}
</script>
</head>
<body>
<form id="sistema" name="sistema" method="post" action="">
<label>Estado</label>
<select class="estado" name="estado"></select>
<label>Cidade</label>
<select class="cidade" name="cidade"></select>
</form>
</body>