Salve a tutti. Nel seguente form riscontro problemi alle voci Titolo Posseduto, Allegati, I tuoi Hobbi. Dove sta l'errore?

codice:
  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Registrazione al sito</title>
</head>
<body>
<h1>Registrati al sito web per scaricare i file.</h1>
<form action="/cgi-bin/register.cgi" method="post" enctype="multipart/form-data">
<table>
	<tr>
    	<td>Nome<input type="text" name="nome" value="nome" /></td>
    </tr>
    <tr>
    	<td>Cognome<input type="text" name="cognome" /></td>
    </tr>
    <tr>
    	<td>Indirizzo<input type="text" name="indirizzo" /></td>    	
    </tr>
    <tr>
    	<td>Sesso
        <input type="radio" name="maschio" value"maschio" />Maschio
        <input type="radio" name="femmina" valu="femmina"  />Femmina
        </td>
    </tr>
    <tr>
    	<td>Sistema Operativo<select name="sistema">
        	<option>Windows Xp</option>
            <option>Windows Vista</option>
            <option>Windows 7</option>
            <option>Ubuntu Linux</option>
        </td>
		</tr>
        
     <tr>
     <td>Titolo Posseduto</td>   
         <td><input type="checkbox" name="scuola" value="media" />Scuola Media
        <input type="checkbox" name="scuola" value="superiori" />Superiori
     	<input type="checkbox" name="scuola" value="laurea" />Laurea</td>   
    
     </tr>
     <tr>
         <td>Allegati</td>
         <td><input type="file" name="fileuload"  /></td>
     </tr>
     
     <tr>
     	<td>I tuoi Hobby:</td>
        <td><textarea name="bio" rows="6" cols="40"</textarea></td>
     
     </tr>     
        
 </table>
</form>

</body>
</html>