# File lib/www/mechanize/form/select_list.rb, line 11
        def initialize(name, node)
          super(name, node)
          if selected_options.length > 1
            selected_options.reverse[1..selected_options.length].each do |o|
              o.unselect
            end
          end
        end