function nextCategory (choice) { var allchoices = "Choose Location:"; if(choice == 'BaileysPubAndGrill') { allchoices += "MI - DearbornMI - TroyTN - GoodlettsvilleTN - Nashville Downtown"; } else if(choice == 'BrickHouseTavern') { allchoices += "CO - ParkerMA - MethuenMO - ChesterfieldOH - Cuyahoga FallsPA - Willow GroveTX - AustinTX - GrapevineTX - Houston - 249TX - Houston - 290TX - PlanoTX - San Antonio"; } else if(choice == 'Champps') { allchoices += "IN - IndianapolisMI - LansingMI - West BloomfieldMN - Eden PrairieMN - MinnetonkaNY - VictorOH - ColumbusPA - CollegevillePA - King Of PrussiaTX - IrvingVA - Arlington"; } else if(choice == 'CraftRepublic') { allchoices += "NM - Albuquerque"; } else if(choice == 'FoxAndHound') { allchoices += "AZ - TucsonCO - Colorado SpringsCO - Lone TreeIL - Arlington HeightsIL - AuroraIL - SchaumburgKS - Overland ParkMO - ChesterfieldMS - SouthavenNC - BallantyneNC - HuntersvilleNC - NorthlakeNC - PinevilleNC - RaleighNC - WilmingtonNE - OmahaNJ - EdisonOH - BeavercreekOH - CantonOH - MasonOH - Mayfield HeightsOK - Broken ArrowPA - EriePA - King Of PrussiaPA - Philadelphia DowntownTN - CordovaTN - SanderlinTX - ArlingtonTX - College StationTX - Fort WorthTX - HoustonTX - MidwayTX - RichardsonVA - Richmond"; } allchoices += ""; document.getElementById('restaurant').innerHTML = allchoices; document.getElementById('restaurant').style.display = 'block'; }