public function __construct()
 {
     parent::__construct();
 }
 /**
  * initialize element with name and value
  * value can be string or array
  * 
  * @param string $name
  * @param string|array $value
  */
 public function __construct($name, $value = NULL)
 {
     parent::__construct($name, $value);
 }