function fill_category() { var selectElement = document.getElementById('category'); var options = selectElement.options; options[options.length] = new Option('Agriculture', '1375'); options[options.length] = new Option('Arts and Entertainment', '1391'); options[options.length] = new Option('Automotive', '1437'); options[options.length] = new Option('Business Services and Supplies', '1556'); options[options.length] = new Option('Community and Government', '1642'); options[options.length] = new Option('Computers and Electronics', '1718'); options[options.length] = new Option('Construction, Materials and Contractors', '1745'); options[options.length] = new Option('Education', '1892'); options[options.length] = new Option('Event Planning and Services', '1929'); options[options.length] = new Option('Financial Services', '1961'); options[options.length] = new Option('Food and Dining', '1999'); options[options.length] = new Option('Health and Wellness', '2085'); options[options.length] = new Option('Home and Garden', '2178'); options[options.length] = new Option('Industry and Manufacturing', '2222'); options[options.length] = new Option('Legal Services', '2667'); options[options.length] = new Option('Personal and Family Services', '2688'); options[options.length] = new Option('Pets', '2715'); options[options.length] = new Option('Real Estate', '2728'); options[options.length] = new Option('Shopping', '2742'); options[options.length] = new Option('Sports and Recreation', '2913'); options[options.length] = new Option('Telecommunications and Media', '2965'); options[options.length] = new Option('Travel and Transportation', '2987'); } function fill_combos() { fill_category(); } function submit_search_all() { if( document.getElementById('category').value !=1 ){ window.location = 'http://www.imarketplace.mn/search/marketplace/' + 'mp_root:' + document.getElementById('category').value + '/' + '?keyword=' + document.getElementById('keywords2').value; } else { window.location = 'http://www.imarketplace.mn/search/marketplace/' + '?keyword=' + document.getElementById('keywords2').value; } } 