/**
 * JSON Respone Zielgruppen und Categorien für "Ihr Suchprofil"
 *
 * @author Marc Harding
 * @version 0.90 , 24 April, 2008
 **/

$(document).ready(function(){

	$("#Funktion").change(function(){
		options = "";
		$.getJSON("/scripts/json_target_audiences.php",{"parent_id":$(this).val()},function(json) {
			for(var i in json) {
				options += ('<option value="'+json[i].products_target_audiences_id+'">'+json[i].products_target_audience_name+'</option>')
			};
		
			$("#Position").html(options);
		
			options = "";
	
		});
	
	});
	
	
	$("#Rechtsgebiet").change(function(){
		options = "";
		$.getJSON("/scripts/json_categories.php",{"parent_id":$(this).val()},function(json){
			for(var i in json) {
				options += ('<option value="'+json[i].categories_id+'">'+json[i].categories_name+'</option>')
			};
	
			$("#Thema").html(options);
	
			options = "";
	
		});
	
	});

});