function ValidateList (nIndex, cFieldName)
{
   if ( nIndex > 0 )
      return true ;
         
   alert ( "You must select " + cFieldName ) ;
   return false ;     
}

