$(document).ready(function(){$("#location").change(function(){if(true){$.getJSON("/select_request_handler.php?req=opt",{opt:$(this).val()},function(data){var options="";$.each(data.items,function(key,val){options+='<option value="'+key+'">'+val+"</option>"});$("#doctor").html(options);$("#doctor option:first").attr("selected", "selected")})}})});