function fetch() {
  var searchValue = document.getElementById('search').value;
  switch(document.getElementById('selectlist').value) {
    case 'Google':
      top.location.href = "http://www.google.com/search?hl=en&lr=&rls=GGLG%2CGGLG%3A2005-47%2CGGLG%3Aen&q=" + searchValue;
      break;
    case 'Wiki':
      top.location.href = "http://en.wikipedia.org/wiki/Special:Search?search=" + searchValue;
      break;
    case 'IMDB':
      top.location.href = "http://www.imdb.com/find?s=all&q=" + searchValue;
      break;
    case 'Bible':
      top.location.href = "http://www.biblegateway.com/passage/?search=" + searchValue;
      break;
    case 'Dictionary':
      top.location.href = "http://dictionary.reference.com/search?q=" + searchValue;
      break;
    case 'Thesaurus':
      top.location.href = "http://thesaurus.reference.com/search?q=" + searchValue;
      break;
    case 'Acronym':
      top.location.href = "http://www.acronymfinder.com/af-query.asp?Acronym=" + searchValue;
      break;
    case 'Slang':
      top.location.href = "http://www.urbandictionary.com/define.php?term=" + searchValue;
      break;
    case 'Snopes':
      top.location.href = "http://search.atomz.com/search/?getit=Go&sp-a=00062d45-sp00000000&sp-q=" + searchValue;
      break;
    case 'KOLWiki':
      top.location.href = "http://kol.coldfront.net/thekolwiki/index.php/Special:Search?search=" + searchValue;
      break;
    default:
      top.location.href = "http://www.google.com/search?hl=en&lr=&rls=GGLG%2CGGLG%3A2005-47%2CGGLG%3Aen&q=" + searchValue;
      break;
  }
return false;
}