combo boxes are the same thing as list boxes,
and if your asking what i think you are, it is very simple
//PLACE ALL YOUR FORM HTML UP HERE
<?php
if($_POST['submit']) {
$listval1 = $_POST['firstlist'];
$listval2 = $_POST['secondlist'];
$query = mysql_query("SELECT * FROM table WHERE dbcolumn1 = '".$listval1."' AND dbcolumn2 = '".$listval2."'");
while($row = mysql_fetch_array($query)) {
echo "your first selection: ".$row['dbcolumn1'];
echo "your second selection: ".$row['dbcolumn2'];
}
}
here, when the submit button is pressed, $listval1 and $listval2 are whatever the user has selected as the values of the boxes, and then $query is executed with $listval1 and $listval2 limiting your results.
then, your results are put into an array and displayed