There are two problems with your original solution. Firstly, your example text:
<option value value='1' >A
has two occurences of the "value" word. Your regex does not. Also, you need to escape the opening brace in the quantifier of your regex or Vim will interpret it as a literal brace. This regex works:
:%s/<option value value='.\{1,}' >//g