El campo maticulado lo podrías crear así
Código:
Sí <input type="radio" name="maticulado" value="1">
No <input type="radio" name="matriculado" value="0" checked>
Otra forma sería
Código:
If Request.form("matriculado") = "" then
matriculado = 0
Else
matriculado = 1
End If
Suerte