team = new Array( new Array( new Array("-- Choose a Product --","0"), new Array("Leather Protectant", "AC ARA PR IN LR EMA"), new Array("Protectant Gel", "AC ARA GL GL PR EMA"), new Array("Protectant Wipes", "AC ARA WP WP PR EMA" ), new Array("Original Protectant", "AC ARA PR IN OR EMA"), new Array("Ultra Shine Protectant", "AC ARA PR IN US EMA"), new Array("Natural Finish Detailer Protectant", "AC ARA PR IN UC EMA") ), new Array( new Array("-- Choose a Product --","0"), new Array("Detailer\'s Advantage Tire Foam Protectant", "AC ARA TR CR DF EMA"), new Array("Extreme Tire Shine", "AC ARA TR CR ET EMA"), new Array("Extreme Tire Shine Gel", "AC ARA GL GL ET EMA"), new Array("Fierce Shine Tire Foam", "AC ARA TR CR FC EMA"), new Array("Tire Foam Protectant", "AC ARA TR CR FA EMA"), new Array("Wheel Cleaner", "AC ARA WL CL WC EMA") ), new Array( new Array("-- Choose a Product --","0"), new Array("Auto Glass Cleaner", "AC ARA CL GL GC EMA"), new Array("Carpet & Upholstery Cleaner", "AC ARA CL IN AR EMA"), new Array("Cleaning Wipes", "AC ARA WP WP CN EMA"), new Array("Glass Wipes", "AC ARA WP WP GL EMA"), new Array("Leather Wipes", "AC ARA WP WP LR EMA"), new Array("Multi-Purpose Auto Cleaner", "AC ARA CL IN MP EMA"), new Array("Orange Cleaning Wipes", "AC ARA WP WP CO EMA"), new Array("OxiMagic" + String.fromCharCode(8482) + " Carpet & Upholstery Cleaner", "AC ARA CL IN OM EMA") ), new Array( new Array("-- Choose a Product --","0"), new Array("Extreme Tire Shine Gel", "AC ARA GL GL ET EMA"), new Array("Leather Care Gel", "AC ARA GL GL LR EMA"), new Array("Protectant Gel", "AC ARA GL GL PR EMA") ), new Array( new Array("-- Choose a Product --","0"), new Array("Armor All Ultra Shine Wash and Wax", "AC ARA CL CW US EMA"), new Array("Car Wash Concentrate Liquid", "AC ARA CL CW LQ EMAIL") ), new Array( new Array("-- Choose a Product --","0"), new Array("Cleaning Wipes", "AC ARA WP WP CN EMA"), new Array("Glass Wipes", "AC ARA WP WP GL EMA"), new Array("Leather Wipes", "AC ARA WP WP LR EMA"), new Array("Orange Cleaning Wipes", "AC ARA WP WP CO EMA"), new Array("Protectant Wipes", "AC ARA WP WP PR EMA"), new Array("Ultra Shine Wipes", "AC ARA WP WP US EMA"), new Array("To-Go Cleaning Wipes", "AC ARA WP PH CN EMA"), new Array("To-Go Exterior Detailing Wipes", "AC ARA WP PH ED EMA"), new Array("To-Go Glass Wipes", "AC ARA WP PH GL EMA") ) ); function fillSelectFromArray(selectCtrlName, itemArray, goodPrompt, badPrompt, defaultItem) { var i, j; var prompt; var selectCtrl = document.getElementById(selectCtrlName) // empty existing items for (i = selectCtrl.options.length; i >= 0; i--) { selectCtrl.options[i] = null; } prompt = (itemArray != null) ? goodPrompt : badPrompt; if (prompt == null) { j = 0; } else { selectCtrl.options[0] = new Option(prompt); j = 1; } if (itemArray != null) { // add new items for (i = 0; i < itemArray.length; i++) { selectCtrl.options[j] = new Option(itemArray[i][0]); if (itemArray[i][1] != null) { selectCtrl.options[j].value = itemArray[i][1]; } j++; } // select first item (prompt) for sub list selectCtrl.options[0].selected = true; } }