var cmap = {
  "label:food":" ==== Food ====",
  "c:japanese_food":"Japanese Food",
  "c:chinese_food":"Chinese Food",
  "c:korean_food":"Korean Food",
  "c:american_food":"American Food",
  "c:seafood":"Sea Food",
  "c:italian_food":"Italian Food",
  "c:french_food":"French Food",
  "c:other_food":"Other Food",
  "c:sweets":"Sweets",
  "c:noodles":"Noodles",
  "c:cafe":"Cafe",
  "c:bar":"Bar",
/**  "label:life":" ==== Life ====",
  "c:apartment":"Apartment",
  "c:hotel":"Hotel",
  "c:rentacar":"Rent a car",
  "c:car_maintainance":"Car Maintainance",
  "c:bank":"Bank",
  "c:child_care":"Child Care",
  "c:school":"School",
  "c:church":"Church",
  "c:hair":"Hair Cut",
  "c:cleaning":"Cleaning",
  "c:hospital":"Hospital",
  "c:museum":"Museum",
  "c:library":"Library",
  "c:concert":"Concert",
  "c:movie":"Movie",
  "c:sport":"Sport",
  "c:hobby":"Hobby", 
  "c:sightseeing":"Siteseeing",              **/
  "label:shopping":" ==== Shopping ====",
  "c:mall":"Mall",
//  "c:department":"Department",
//  "c:super_market":"Super Market",
  "c:grocery_asian":"Asian Groceries",
//  "c:grocery_italian":"Italian Groceries",
//  "c:grocery_indian":"Indian Groceries",
//  "c:grocery_misc":"Misc Groceries",  
//  "c:grocery_seafood":"Sea Food",
//  "c:alcohol":"Alcohol",
//  "c:electric":"Electric",
//  "c:computer":"Computer",
//  "c:music":"Music",
//  "c:book":"Book"
  "label:all":" ==== All Items ====",
  "1":"All"
};

function addCategories() {

  var select = document.getElementById( 'q_category' );

  for (var key in cmap ) {
    var option = document.createElement( 'option' );
    option.setAttribute( 'value', key.match(/label:/)?"":key );
    option.innerHTML = cmap[key];
    select.appendChild( option );
  }
}
addCategories();
