function fill_category() { 
  var selectElement = document.getElementById('category');
  var options = selectElement.options;

  options[options.length] = new Option('Agriculture', '1876'); 
  options[options.length] = new Option('Arts and Entertainment', '1892'); 
  options[options.length] = new Option('Automotive', '1938'); 
  options[options.length] = new Option('Business Services and Supplies', '2057'); 
  options[options.length] = new Option('Community and Government', '2143'); 
  options[options.length] = new Option('Computers and Electronics', '2219'); 
  options[options.length] = new Option('Construction, Materials and Contractors', '2246'); 
  options[options.length] = new Option('Education', '2393'); 
  options[options.length] = new Option('Event Planning and Services', '2430'); 
  options[options.length] = new Option('Financial Services', '2462'); 
  options[options.length] = new Option('Food and Dining', '2500'); 
  options[options.length] = new Option('Health and Wellness', '2586'); 
  options[options.length] = new Option('Home and Garden', '2679'); 
  options[options.length] = new Option('Industry and Manufacturing', '2723'); 
  options[options.length] = new Option('Legal Services', '3168'); 
  options[options.length] = new Option('Personal and Family Services', '3189'); 
  options[options.length] = new Option('Pets', '3216'); 
  options[options.length] = new Option('Real Estate', '3229'); 
  options[options.length] = new Option('Shopping', '3243'); 
  options[options.length] = new Option('Sports and Recreation', '3414'); 
  options[options.length] = new Option('Telecommunications and Media', '3466'); 
  options[options.length] = new Option('Travel and Transportation', '3488'); 
}

function fill_combos() {
  fill_category();
}

function submit_search_all() {
if( document.getElementById('category').value !=1 ){
  window.location = 'http://marketplace.milwaukeemarketplace.com/search/marketplace/' + 'mp_root:' + document.getElementById('category').value + '/' + '?keyword=' + document.getElementById('dpckeywords').value;
} else {
  window.location = 'http://marketplace.milwaukeemarketplace.com/search/marketplace/' + '?keyword=' + document.getElementById('dpckeywords').value;
}
}

