Check drop down has been selected

Come controllare che, in una form, sia stata selezionata una voce da una lista:

function testa() {
if (document.nomeform.testseleziona.value == 'not_selected') {
  alert("Devi selezionare un valore.\n");
  return false;
  }
}