function removeNode(n){ if(n.hasChildNodes()) { while (n.firstChild) { //The list is LIVE so it will re-index each call n.removeChild(n.firstChild); }; } n.parentNode.removeChild(n); } function addList(theSelect, theZip) { if(document.getElementById('additionalSelect'+theSelect.id)) { removeNode(document.getElementById('additionalSelect'+theSelect.id)); } var oSelect=document.createElement("select"); oSelect.setAttribute("id", 'additionalSelect'+theSelect.id); switch(theSelect.options[theSelect.selectedIndex].value) { case 'product_liability': var t = document.createTextNode("Select type of Product Liability"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'default'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Ancure Abdominal Heart Stent"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'ancure'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Bausch & Lomb ReNu MoistureLoc"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'bausch_and_lomb'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Charite Artificial Spinal Disc"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'charite-spinal'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Composix Hernia Patch"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'composix-kugel'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Cooper Tires"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'cooper_tires'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Crash Worthiness"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'crash_worthiness'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Crib Recall"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'crib-recall'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Cryolife"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'cryolife'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Defective Baby Seat"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'defective_baby_products'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Defective Tires"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'defective_tires'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Enteryx"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'enteryx'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Firestone Tire Recall"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'firestone'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Food Poisoning"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'food-poisoning'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Guidant Heart Defibrillators"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'guidant'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Heart Stents"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'heart_stent'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Infusion Pump Recall"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'infusion_pump'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Intrinsa"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'intrinsa'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Lemon Law"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'lemon_law'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Metallic Tracheal Stents"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'tracheal_stent'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Ortho Evra"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'birth-control-patch'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Peanut Butter Food Poisoning"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'pb-food-poisoning'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Product Liability Information"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'product'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Shelhigh Implantable Medical D"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'shelhigh-device'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Smith & Nephew Knee Replacemen"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'knee_replacement'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Sprint Fidelis Defect - Medtro"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'Medtronic'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("St. Jude Medical Cardiac Defib"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'st-jude'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Toy Recall"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'toy-recall'); oOption.appendChild(t); oSelect.appendChild(oOption); break; case 'drug_recall': var t = document.createTextNode("Select drug"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'default'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode(""); var oOption = document.createElement("option"); oOption.setAttribute("value", ''); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Accutane"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'accutane'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Acetaminophen"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'acetaminophen'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Adderall"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'adderall'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Amiodarone"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'amiodarone'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Androstenedione"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'androstenedione'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Arava"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'arava'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Avandia"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'avandia'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Baycol"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'baycol'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Baytril"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'baytril'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Bextra"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'bextra'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Celebrex"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'celebrex'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Cipro Side Effects"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'cipro-side-effects'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Cold-Eeze"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'cold-eeze'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Common Defective Drugs"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'defective-drugs'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Crestor"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'crestor'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Defective Drug FAQ"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'defective-drug-faq'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Depakote"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'depakote'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Drug Company Information"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'drug_company'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Ephedrine and Metabolife"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'ephedrine'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Erythromycin"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'erythromycin'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Exjade"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'exjade'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Fen Phen"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'fen_phen'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Fentanyl Patch"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'fentanyl'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Floxin and Noroxin"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'floxin-and-noroxin'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Fluoroquinolone Antibiotics"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'fluoroquinolone-antibiotics'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Fosamax"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'fosamax'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Gadolinium"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'gadodiamide'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Gatifloxacin"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'gatifloxacin'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Geodon"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'geodon'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Gleevec"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'gleevec'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Heparin"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'heparin'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Humira and Remicade"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'humira'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Kava Kava"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'kava'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Ketek"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'ketek'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Lariam"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'lariam'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Levaquin Lawsuit"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'levaquin-lawsuit'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Meridia"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'meridia'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Naproxen (Aleve)"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'naproxen'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Natrecor"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'Natrecor'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Neurontin"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'neurontin'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Nuvaring"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'nuvaring'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Oxycontin"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'oxycontin'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Palladone"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'palladone'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Paxil"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'paxil'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Permax"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'permax'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Plavix"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'plavix'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("PPA"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'ppa'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Procrit"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'procrit'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Protopic"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'protopic'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Prozac"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'prozac'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Remicade Lawsuit"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'remicade'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Rezulin"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'rezulin'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Risperdal"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'risperdal'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Ritalin"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'ritalin'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Serevent"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'serevent'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Seroquel"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'seroquel'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Serzone"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'serzone'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Tequin"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'tequin'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Thimerosal"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'thimerosal'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Trasylol - Aprotinin Injection"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'aprotinin-trasylol'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Viagra"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'viagra'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Viga"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'viga'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Vioxx"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'vioxx'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("What is Quinine?"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'quinine'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Zelnorm"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'zelnorm'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Zicam"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'zicam'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Zoloft"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'zoloft'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Zyprexa"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'zyprexa'); oOption.appendChild(t); oSelect.appendChild(oOption); break; case 'more_legal_areas': var t = document.createTextNode("Select specific area"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'default'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Agent Orange"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'agent_orange'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Aviation Law"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'aviation'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Bad Faith Insurance"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'bad_faith'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Bail Bonds"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'bail_bond'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Bankruptcy"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'bankruptcy'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Benzene"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'benzene'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Bosentan"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'bosentan'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Butadiene"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'butadiene'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Cerebral Palsy"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'cerebral_palsy'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Consumer Fraud"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'consumer_fraud'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Contract Law"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'contract'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Creosote"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'creosote'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Defective Hip Implants"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'defective-hip'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Dioxin"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'dioxin'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Disability Discrimination"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'disability-discrimination'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Discrimination"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'discrimination'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("ERISA"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'erisa'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("FELA"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'fela'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Fluoride Bone Cancer"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'fluoride-osteosarcoma'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Lead Exposure"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'lead_exposure'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Manganese"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'manganese'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Maritime Law"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'maritime'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Mesothelioma"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'mesothelioma'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Nursing Home Abuse"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'nursing_home'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Pesticide Safety"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'pesticides'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("PPH"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'PPH'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Pressure Treated Wood"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'arsenic'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Qui Tam"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'qui-tam'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Racial Discrimination"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'racial-discrimination'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Security Clearance Denial"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'security-clearance_denial'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Sexual Discrimination"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'sexualdiscrimination'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Silicosis"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'silicosis'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Social Security Disability"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'social-security-disability'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Stock Fraud"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'stock_fraud'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("SUV Rollover"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'suv'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Tardive Dyskinesia"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'tardive'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Toxic Mold"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'toxic_mold'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Toxic Substance"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'toxic-substances'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Variable Annuities"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'variable_annuities'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Vinyl Chloride"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'vinyl-chloride'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Welding Rod"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'welding-rod'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Whistleblower Law"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'whistleblower'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Wood Dust Exposure"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'wood-dust-exposure'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Workers Compensation Lawyer"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'workers_compensation'); oOption.appendChild(t); oSelect.appendChild(oOption); break; case 'disease': var t = document.createTextNode("Select Disease"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'default'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode(""); var oOption = document.createElement("option"); oOption.setAttribute("value", 'stevens-johnson'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode(""); var oOption = document.createElement("option"); oOption.setAttribute("value", 'epidermal-necrolysis'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode(""); var oOption = document.createElement("option"); oOption.setAttribute("value", 'stevens_johnson'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode(""); var oOption = document.createElement("option"); oOption.setAttribute("value", ''); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Adenocarcinoma"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'adenocarcinoma'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Anosmia"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'anosmia'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Craniosynostosis"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'craniosynostosis'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Cuboidal Metaplasia"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'cuboidal-metaplasia'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Deep Vein Thrombosis"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'dvt'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Ethmoid Sinus Carcinoma"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'ethmoid-sinus-carcinoma'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("NAION"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'NAION'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Nephrogenic Systemic Fibrosis "); var oOption = document.createElement("option"); oOption.setAttribute("value", 'nsf'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Omphalocele and SSRIs"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'omphalocele'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("PPHN"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'PPHN'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Stevens Johnson Syndrome"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'stevens_johnson_syndrome'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("Toxic Epidermal Necrolysis"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'epidermal_necrolysis'); oOption.appendChild(t); oSelect.appendChild(oOption); var t = document.createTextNode("What is Sinus Cancer?"); var oOption = document.createElement("option"); oOption.setAttribute("value", 'sinus-cancer'); oOption.appendChild(t); oSelect.appendChild(oOption); break; default: return false; } var parentDiv = theZip.parentNode; parentDiv.insertBefore(oSelect,theZip) }