อันนี้อยู่ในส่วนของ Head
<script language="javascript">
function ChangeOptions(ListProvince, ListAmphur, strArray)
{
var alen = eval(strArray+".Length")
var listLen = 0
var strKey = eval("document.forms[0]."+ListProvince+".options[document.forms[0]."+ListProvince+".selectedIndex].value")
eval("document.forms[0]."+ListAmphur+".options.lenght=0");
for (var i = 0 ; i < alen; i++)
{
if (eval(strArray+"[0] == "+strKey))
{
eval("document.forms[0]."+ListAmphur+".options[listLen] = new Option("+strArray+"[2], "+strArray+"[1])");
listLen=listLen+1;
}
}