/**
 * @author Andrew Smith
 */
$(document).ready(function(){
	$("#options").change(function(){
		category = document.adv_search.c;
		selected = category.value;
		//alert(selected);
		$.post(
		   "searchopt.php",
		   "option_id="+selected,
		   function(r){
				$("#type").empty().append(r).show('fast');
		   }
		);
		
		$.post(
		   "priceopt.php",
		   "option_id="+selected,
		   function(r){
				$("#prices").empty().append(r).show('fast');
		   }
		);
	});
});