function stateLawDropDown() {
var sE = null, url;
if(document.getElementById) {
sE = document.getElementById('statelaw');
} else if(document.all) {
sE = document.all['statelaw'];
}
if(sE && (url = sE.options[sE.selectedIndex].value)) {
location.href = url;
}
}