class WWW::Mechanize::Form::SelectList

def value=(new)

def value=(new)
  if new != new.to_s and new.respond_to? :first
    super([new.first])
  else
    super([new.to_s])
  end
end