function go2(sel) {
  ix = sel.selectedIndex;
  if (sel.options[ix].value != "none") {
	loc = sel.options[ix].value;
//	alert(loc);
	document.location = loc;
	return false;
  }
  return false;
}
document.writeln('<form action=" ">');
document.writeln('<select name="select1" onChange="return go2(this)">');
document.writeln('<option value="none">Drug Information.....Select');
document.writeln('<option value="none">--------------------');
document.writeln('<option value="\/~policens\/info\/drug\/alocohol.html">Alocohol');
document.writeln('<option value="\/~policens\/info\/drug\/amphet.html">Amphetamines');
document.writeln('<option value="\/~policens\/info\/drug\/cannabis.html">Cannabis');
document.writeln('<option value="\/~policens\/info\/drug\/cocaine.html">Cocaine');
document.writeln('<option value="\/~policens\/info\/drug\/ecstasy.html">Ecstasy');
document.writeln('<option value="\/~policens\/info\/drug\/fantasy.html">Fantasy GHB');
document.writeln('<option value="\/~policens\/info\/drug\/hallucinogens.html">Hallucinogens');
document.writeln('<option value="\/~policens\/info\/drug\/heroin.html">Heroin');
document.writeln('<option value="\/~policens\/info\/drug\/inhalants.html">Inhalants');
document.writeln('<option value="\/~policens\/info\/drug\/methadone.html">Methadone');
document.writeln('<option value="\/~policens\/info\/drug\/naltrexone.html">Naltrexone');
document.writeln('<option value="\/~policens\/info\/drug\/tobacco.html">Tobacco');
document.writeln('<option value="\/~policens\/info\/drug\/tranquillisers.html">Tranquillisers');

document.writeln('<option value="none">--------------------');
document.writeln('<\/select>');

document.writeln('<\/form>');
