I saw a page that had a useful type of dropdown. It only allowed users to select items from the major style of beer they belong to. In my list below I want to show B1. Light Lager but you can only select B1A, B1B, C, D, and E.
// **** NOTE - you can comment out blocks of categories (but remember to keep the group if there are any entries) var CategoryArray = [ " B1. LIGHT LAGER", " B1A. Lite American Lager", " B1B. Standard American Lager", " B1C. Premium American Lager", " B1D. Munich Helles", " B1E. Dortmunder Export", " B2. PILSNER", I'd like to do this in a .NET control if possible. __Stephen
