Thanks for the swift reply. I've made an attempt at adding your code to my form to no avail (of coarse). I've added the form below I'm sure I'm missing something small since I'm brand new to PHP. Thanks in advance for any help.
<form name="choose_campus">
<select name="parcel_type">
<?php
$db_connect = mssql_connect('AGIO-7NWEIO', 'tmp_PHP', 'letmein');
mssql_select_db('AR_Cross', $db_connect);
$query = "SELECT * FROM Cross_CAMA";
$result = mssql_query($query);
while($type = mssql_fetch_array($result)){
print "<option>".$type[type];
}
?>
</select>
<select name="parcel_id">
<?
if (isset($POST['parcel_type'])
$pid = $POST['parcel_type'];//Getting an unexpected T_VARIABLE here
}
$db_connect = mssql_connect('AGIO-7NWEIO', 'tmp_PHP', 'letmein');
mssql_select_db('AR_Cross', $db_connect);
$query = "SELECT * FROM Cross_CAMA WHERE type = '$pid'";
$result = mssql_query($query);
while($parcel = mssql_fetch_array($result)){
print "<option>".$parcel[parcel_id];
}
?>
</form>