Choose adds a random chance into the equation.
if you want to increase by percent you just have to express the percentage as a decimal, so 0.1 would be 10%, or 0.05 would be 5%.
multiply the current attack by the decimal to get the amount to add
PlayerAttack = PlayerAttack + 0.05 x PlayerAttack
would add 5% more attack to the current value.