Hey,
I might be wrong about this but I am pretty sure that this is NOT valid:
<OPTION VALUE="Acquisitions" "SELECTED"> in HTML.
I could be wrong but I am pretty sure your looking for code that is like this:
<SELECT name="generic">
<OPTION VALUE="">--Select--</option>
<OPTION VALUE="Acquisitions" <?php If ($GENERIC == "Acquisitions") { echo
"selected"; } ?> > Acquisitions</option>
<OPTION VALUE="Circulation" <?php If ($GENERIC == "Circulation") { echo "selected"; } ?> > Circulation</option>
</SELECT>
See if that works for ya. I am pretty sure that it will.
Keep coding and good luck!
Chad