function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

document.write('<form name="form">');
document.write('<select name="site" size=1>');
document.write('<option value="">I want to buy a...');
document.write('<option value="/Acer Portables Laptops Notebooks.php">Acer');
document.write('<option value="/Apple Portables Laptops Notebooks.php">Apple');
document.write('<option value="/ASUS Portables Laptops Notebooks.php">ASUS');
document.write('<option value="/BenQ Portables Laptops Notebooks.php">BenQ');
document.write('<option value="/Compaq Portables Laptops Notebooks.php">Compaq');
document.write('<option value="/Fujitsu-Siemens Portables Laptops Notebooks.php">Fujitsu-Siemens');
document.write('<option value="/HP Portables Laptops Notebooks.php">HP');
document.write('<option value="/IBM Portables Laptops Notebooks.php">IBM');
document.write('<option value="/JVC Portables Laptops Notebooks.php">JVC');
document.write('<option value="/Panasonic Portables Laptops Notebooks.php">Panasonic');
document.write('<option value="/Samsung Portables Laptops Notebooks.php">Samsung');
document.write('<option value="/Sony Portables Laptops Notebooks.php">Sony');
document.write('<option value="/Toshiba Portables Laptops Notebooks.php">Toshiba');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');