//Created by Webworldx - RPG Profile Modifier
//Open Source, but please keep this in the header.
if (location.href.indexOf("=headersfooters") != -1) {
} else {
var range = document.body.createTextRange();
range.collapse(true);
while (range.findText("Personal Text")) {
range.text="RPG Race"
range.collapse(false);
}

var itype = document.getElementsByTagName('input');
for(a=0;a<itype.length;a++){
if (itype[a].name=="usertext") {
itype[a].outerHTML = itype[a].outerHTML.replace(/size=50/gi,"")
itype[a].outerHTML = itype[a].outerHTML.replace(/input/gi,"select")
}
}
var stype = document.getElementsByTagName('select');
for(a=0;a<stype.length;a++){
if (stype[a].name=="usertext") {
stype[a].outerHTML = stype[a].outerHTML + '
<option value="RPG Race - Dwarf">Dwarf
<option value="RPG Race - Elf">Elf
<option value="RPG Race - Ent">Ent
<option value="RPG Race - Hobbit">Hobbit
<option value="RPG Race - Human">Human
<option value="RPG Race - Istari">Istari
</select>'
}
}

}