PHP Code:
function fillCategory(){ addOption(document.drop_list.Main, 'Scotland', 'Scotland');addOption(document.drop_list.Main, 'North East', 'North East');addOption(document.drop_list.Main, 'North West', 'North West');addOption(document.drop_list.Main, 'Yorkshire', 'Yorkshire');addOption(document.drop_list.Main, 'Wales', 'Wales');addOption(document.drop_list.Main, 'West Midlands', 'West Midlands');addOption(document.drop_list.Main, 'East Midlands', 'East Midlands');addOption(document.drop_list.Main, 'South West', 'South West');addOption(document.drop_list.Main, 'South East', 'South East');} function SelectCat(){ removeAllOptions(document.drop_list.Category); addOption(document.drop_list.Category, "", "Category", ""); if(document.drop_list.Main.value == 'Scotland'){addOption(document.drop_list.Category,'Gardening Scotland Show', 'Gardening Scotland Show');addOption(document.drop_list.Category,'Royal Botanic Gardens Edinburugh', 'Royal Botanic Gardens Edinburugh');}if(document.drop_list.Main.value == 'North East'){addOption(document.drop_list.Category,'Crook Hall Gardens', 'Crook Hall Gardens');addOption(document.drop_list.Category,'Lancoshire Show', 'Lancoshire Show');}if(document.drop_list.Main.value == 'North West'){addOption(document.drop_list.Category,'RHS Show Tatton Park', 'RHS Show Tatton Park');addOption(document.drop_list.Category,'Knowsley Flower Show', 'Knowsley Flower Show');addOption(document.drop_list.Category,'Fletcher Moss Botanical Gardens', 'Fletcher Moss Botanical Gardens');}if(document.drop_list.Main.value == 'Yorkshire'){addOption(document.drop_list.Category,'RHS Harlow Carr', 'RHS Harlow Carr');addOption(document.drop_list.Category,'Harrogate Autumn Flower Show', 'Harrogate Autumn Flower Show');}if(document.drop_list.Main.value == 'Wales'){addOption(document.drop_list.Category,'RHS Spring Show Cardiff', 'RHS Spring Show Cardiff');addOption(document.drop_list.Category,'National Botanic Gardens of Wales', 'National Botanic Gardens of Wales');}if(document.drop_list.Main.value == 'West Midlands'){addOption(document.drop_list.Category,'BBC Gardeners World Live', 'BBC Gardeners World Live');addOption(document.drop_list.Category,'Charlecote Park', 'Charlecote Park');addOption(document.drop_list.Category,'Birmingham Botanical Gardens', 'Birmingham Botanical Gardens');}if(document.drop_list.Main.value == 'East Midlands'){addOption(document.drop_list.Category,'Linconshire Show', 'Linconshire Show');addOption(document.drop_list.Category,'Renishaw Hall', 'Renishaw Hall');addOption(document.drop_list.Category,'Chatsworth Derbyshire', 'Chatsworth Derbyshire');}if(document.drop_list.Main.value == 'South West'){addOption(document.drop_list.Category,'RHS Garden Rosemoor', 'RHS Garden Rosemoor');addOption(document.drop_list.Category,'Killerton House and Gardens', 'Killerton House and Gardens');addOption(document.drop_list.Category,'Eden Project Cornwall', 'Eden Project Cornwall');}if(document.drop_list.Main.value == 'South East'){addOption(document.drop_list.Category,'RHS London Harvest Show', 'RHS London Harvest Show');addOption(document.drop_list.Category,'Royal Botanic Gardens Kew', 'Royal Botanic Gardens Kew');addOption(document.drop_list.Category,'RHS Hampton Court Palace Flower Show', 'RHS Hampton Court Palace Flower Show');}}
Bookmarks