If URL_THEME won't contain any numbers then modifying xelawho's code:
Code:
function changeCap() {
var num=Math.floor(Math.random()*21)
document.getElementById("captcha").src = document.getElementById("captcha").src.replace(/[0-9]+/,num);
}
would just replace the random number with the one JS generates.