$(document).ready(function(){

	$("#e_place").each(function()
	       {
           $(this).change( chFastcountry );
						$(this).change( chFasttown );
	       }
	);

	$("#e_reg").change( chFasttown );
});


function chFastcountry(event)
{

	$("#e_reg").removeOption(/./);
    $("#e_reg").ajaxAddOption("../include/_script_gradove.php",{"placetype" : $(this).val()},false,function() {
    	});

	$("#e_reg").change( chFasttown );
}
function chFasttown(event)
{
		$("#e_loc").removeOption(/./);
    $("#e_loc").ajaxAddOption("../include/_script_loc.php",{"reg" : $("#e_reg").val()},false,function() {
    	});
}
