<html>
<head>
<script type="text/javascript">
$verticals_arr = { 'antiques-collectibles':"Antiques & Collectibles",'auto-dealers':"Auto Dealers",'beauty-salons-spas':"Beauty Salons & Spas",'catering-services':"Catering Services",'clothing-footwear':"Clothing & Footwear",'dentists':"Dentists",'electronics':"Electronics",'entertainment':"Entertainment",'financial-planners':"Financial Planners",'florists':"Florists",'furniture-stores':"Furniture Stores",'groceries-specialty-foods':"Groceries & Specialty Foods",'health-products-services':"Health Products & Services",'home-based-businesses':"Home Based Businesses",'home-decor':"Home Decor",'home-repairs-renovations':"Home Repairs & Renovations",'hotels':"Hotels",'legal-services':"Legal Services",'mortgage-brokers':"Mortgage Brokers",'real-estate-brokers':"Real Estate Brokers",'restaurants':"Restaurants",'sporting-goods-stores':"Sporting Goods Stores",'sports-recreation':"Sports & Recreation",'other':"Other"};
function showOptionsDrop(){
var sel = document.selectform.verticals;
for(o in $verticals_arr) {
sel.options[sel.options.length]=new Option($verticals_arr[o],o)
}
}
window.onload=function() {
showOptionsDrop();
}
</script>
</head>
<body>
<form method='post' name='selectform'>
<select name="verticals" onchange="doValue();">
<option value="0">Choose a Vertical</option>
</select>
</form>
</body>
</html>
|