$(document).ready(function() {
	loading_str = '<select disabled><option>Loading...</option></select>';
	$("#search1").load('/shop.php?search=size',function() {
		$("#search1 select").change(function() {
			if ($(this).val()!='') {
				id = $(this).val();
				$("#search2").html(loading_str);
				$("#search2").load('/shop.php?search=fabric&parent='+id,function() {
					$("#search2 select").change(function() {
						if ($(this).val()!='') {
							id = $(this).val();
							$("#search3").html(loading_str);
							$("#search3").load('/shop.php?search=colour&parent='+id,function() {
								$("#search3 select").change(function() {
									if ($(this).val()!='') {
										id = $(this).val();
										$("#search3").html(loading_str);
										window.location = 'product_info.php?products_id='+id;
									}
								});
							});
						}
					});
				});
			}
		});
	});
});