Dynamically creating a radio button using eg
var radioInput = document.createElement(\'input\'); radioInput.setAttribute(\'type\', \'radio\'); radioInput.se
why not creating the input, set the style to dispaly: none and then change the display when necesary this way you can also probably handle users whitout js better.