function validate2() {

var catadded = document.registration.added.options.length

var msg = 'Please fill in or modify the following fields : ';

var retval = true;

var focusset = false



if (catadded == 0) 

   {
   msg = msg + '\n- Select a Category / Industry'
   if (focusset != true ) {
   document.registration.add.focus();
   focusset = true;
}
   retval = false;
   }


if (retval != true ) 
	 {
	 alert(msg);
	 }
return retval;


}