asked on
function changeitems()
{
for(i=$('neighborhood').options.length-1; i>=0; i--)
$('neighborhood').remove(i);
$('neighborhood').add(new Option('--Not Set or n/a--', '-1'),null);
$('neighborhood').add(new Option("--> Other (type on 'other' line)", "-2"),null);
}
function $(e){if(typeof e=='string')e=document.getElementById(e);return e};