I have one select tag
I want to change select tag value from value="-1:Select;" to value="-1:Select;2:option1"
<select role="select" value="-1:Select;" id="brandingName" name="brandingName" size="1" class="FormElement">
</select>
value="-1:Select;"
I have tried with below syntax but it does not change:
document.getElementById("brandingName").value = "-1:Select;2:option1";
How can I change this value using JavaScript or jQuery?