add in the id's needed for the map it feature.
             'type'    => 'text',
             'req'     => false,
             'name'    => 'address',
-            'display' => 'Address'
+            'display' => 'Address',
+            'opts'    => array('id' => 'address')
         );
         $e[] = array(
             'type'    => 'text',
             'req'     => true,
             'name'    => 'city',
-            'display' => 'City'
+            'display' => 'City',
+            'opts'    => array('id' => 'city')
         );
         $e[] = array(
             'type'    => 'text',
             'req'     => false,
             'name'    => 'state',
-            'display' => 'State'
+            'display' => 'State',
+            'opts'    => array('id' => 'state')
         );
         $e[] = array(
             'type'    => 'text',
             'req'     => false,
             'name'    => 'zip',
-            'display' => 'ZIP'
+            'display' => 'ZIP',
+            'opts'    => array('id' => 'zip')
         );
         $e[] = array(
             'type'    => 'header',