border: thin solid #FF0000
<script type="text/javascript">
function changeBorderWidth()
document.getElementById("p1").style.borderRightWidth="thick";
<input type="button" onclick="changeBorderWidth()" value="Change right border width" />
<p id="p1">This is a paragraph</p>