На
jQuery
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
$(function() {
$('input').change(function() {
alert(this.value ? 'Жить' : 'Умереть')
})
});
</script>
</head>
<body>
<label><input name="rule" type="radio" value="1" /> зеленый</label>
<label><input name="rule" type="radio" value="" /> красный</label>
<label><input name="rule" type="radio" value="" /> желтый</label>
</body>
</html>