Index: trunk/lib/Text/FormBuilder/grammar
===================================================================
--- trunk/lib/Text/FormBuilder/grammar	(revision 81)
+++ trunk/lib/Text/FormBuilder/grammar	(revision 84)
@@ -19,4 +19,5 @@
 	@options,
 	$required,
+	$multiple,
 	$list_var,
 	$size,
@@ -187,5 +188,5 @@
 
 # this is the real heart of the thing
-field: name field_size(?) growable(?) label(?) hint(?) type(?) other(?) default(?) option_list(?) validate(?) comment(?)
+field: name field_size(?) growable(?) label(?) hint(?) type(?) multi(?) other(?) default(?) option_list(?) validate(?) comment(?)
     {
 	my $field = {
@@ -194,4 +195,5 @@
 	    label    => $item{'label(?)'}[0],
 	    comment  => $item{'hint(?)'}[0],
+	    multiple => $item{'multi(?)'}[0],
 	    type     => $item{'type(?)'}[0],
 	    other    => $item{'other(?)'}[0],
@@ -218,4 +220,5 @@
 	$type = undef;
 	$required = undef;
+	$multiple = undef;
 	$list_var = undef;
 	$size = undef;
@@ -254,4 +257,6 @@
 builtin_field: /textarea|text|password|file|checkbox|radio|select|hidden|static/
 
+multi: '*' { 1 }
+
 other: '+' 'other' { 1 }
 
