簡単なデモ
<select id = "select1">
<option value = "1"></option>
...
</select>
<select id = "select2">
</select>
次にJavaScriptを使用します(jqueryがajaxを行う方法が大好きです):
$('#select1').change(function(){
var sendmeover = $('#select1').val();
$.post("yourphpscript.php",{
sendingthiswithpost: sendmeover
},
//and here is the responce
function(data){
$('#select2').html(''+data+'');
});
})//end select change
次に、あなたのphp(yourphpscript.php):
<?php
$variablesent = $_REQUEST['sendingthiswithpost'];
//here is where you would run an sql query and ech your results
echo $variablesent
?>
私が何かを見逃していて、それを修正していない場合はお知らせください。これはかなり簡単に行いました。<option>
注: phpでタグを作成する必要があります