// JavaScript Document

$(document).ready(function(){
	
	$('#dd_cat_top').change(function(){		
	
		var top_cat_id = $(this).val();
	
		$.ajax({
			
			url: 'modules.php',
			data: 'name=forge&op=funct_cat_main&cat_top_id='+top_cat_id,
			dataType: 'html',
			type: 'get',
			cache: false,
			
			success: function (data) {
				
				$("#main_cat").html(data);
			}
		
		});	
	
	});
});
								
