Basketmen,
Looking at your code, you have radio buttons, and in that list, you can only select 1 item. You will need to set those as "checkboxes".
Once you get that done, you need simple do:
PHP Code:
if(isset($_POST["people_name_just_from_adult_category"]))
$sql = "SELECT people_name,people_category FROM people WHERE people_name = '".$_POST["people_name"]."' AND people_category = 'adult'";
else
$sql = "SELECT people_name,people_category FROM people WHERE people_name = '".$_POST["people_name"]."'";
If you need any more help, I'd be of some assisstance.