function selectBand(selectBox)
{
  chosenBand = selectBox.options[selectBox.selectedIndex].value;

  if (chosenBand.length > 0)
    window.location = '/bands/' + chosenBand + '.php'; 
}