Hallo Erstmal

,
Ich habe ein kleines Problem.
Ich möchte gerne, dass wenn jemand etwas ins Feld email eingibt, die Farbe sich ändert.
PHP-Code:
<style type="text/css">
#Text01 { font:bold .15px Tunga; color:black; }
#Text02 { font:bold .17px 'Berlin Sans FB'; color:red; }
#Text03 { font: 15px Tunga; color:black; }
</style>
PHP-Code:
<?php
if (empty($_REQUEST['email'])) {
print "<td id='Text02'>E-Mail</td>"; //rot
} else {
print "<td id='Text01'>E-Mail</td>"; //schwarz
}
?>
</td>
<td colspan="3"><input name="email" size="32" type="text"></td>
Hier eine
Vorschau wie weit ich breits bin.
Die Anzeige in Rot wird bereits gemacht, nur das Umspringen auf schwarz funktioniert nicht.
Für eine kleine Hilfestellung wäre ich sehr dankbar