$(document).ready(function(){$("select[name=country_id]").bind("change",function(){var country_id=$(this).val();$.ajax({type:"GET",url:"getRegions.php?country_id="+country_id,dataType:"html",success:function(html){$("#regionsSearch").empty();$("#regionsSearch").append(html);}});});});