I would like to change the color of a select box based on what option they choose. In the example below, I would change the color to red, yellow or green. Is this possible?
<html>
<head>
</head>
<body>
<SELECT name="p_param1">
<OPTION value=RED>STOP
<OPTION value=YELLOW>CAUTION
<OPTION value=GREEN>GO
</SELECT>
</body>
</html>
<html>
<head>
</head>
<body>
<SELECT name="p_param1">
<OPTION value=RED>STOP
<OPTION value=YELLOW>CAUTION
<OPTION value=GREEN>GO
</SELECT>
</body>
</html>