BTW, these lines right here:
print("<option selected>Choose a Package</option>");
print("<option>____________________</option>");
do not contain values. They should look like:
print("<option value ="-1" selected=\"selected\">Choose a Package</option>");
print("<option value="0">____________________</option>");
print("<option value="1">Some choice here</option>");
print("<option value="2">Another choice</option>");
// and so on
I used numbers for the values, but you should change them to whatever you intend to submit to the PHP script for parsing.