хммм @Dai был быстрее меня: P ... но в любом случае, это не навязчивый способ сделать то же самое с помощью Mootools (если вы не хотите смешивать код js и html)
http://jsfiddle.net/raKbZ/1/
$('radio4').addEvent('change',function(E){
if(E.target.checked){
enableInput();
}
});
$$('.normal').each(function(radio){
radio.addEvent('change',function(E){
if(E.target.checked){
disableInput();
}
});
});
function enableInput(){
$('other').set('disabled','');
$('other').setStyle('background-color','#fff');
}
function disableInput(){
$('other').set('disabled','disabled');
$('other').setStyle('background-color','#d4d4d4');
}