A neat little piece of Javascript, but you can apply it to almost nothing. This is great if you have just started a page and would like something as a diversion to your guests.
The source...



<FORM name="back">
<SELECT name="g" onChange="change()">
    <OPTION VALUE="aqua">Aqua
    <OPTION VALUE="green">Green
    <OPTION VALUE="orange">Orange
    <OPTION VALUE="yellow">Yellow
    <OPTION VALUE="purple">Purple
    <OPTION VALUE="gray">Gray
    <OPTION VALUE="pink">Pink
    <OPTION VALUE="lavender">Lavender
    <OPTION VALUE="khaki">Khaki
    <OPTION VALUE="skyblue">Sky Blue
    <OPTION VALUE="white" SELECTED>White
</SELECT>
<INPUT TYPE="button" VALUE="Change">
</FORM>
<script language="Javascript">
<!--
// Please keep the line after this on.
// Made by Nicolas - http://www.javascript-page.com

function change() {
document.bgColor = document.back.g.options[document.back.g.selectedIndex].value
}

//-->
</script>

Main Page