// JavaScript Document

$(function() {
	
	$("#adco-cust").click(function() {
		$("#cust-rvTypes").html("<option>loading...</option>");
		$.ajax({
			type: "POST",
			url: "/order/wizard/adco/ajax/cust/_rvtypes.cfm",
			data: "",
			cache: false,
			success: function(msg){
				$("#cust-rvTypes").html(msg);
			}
		});					   
	});
	
	$("#adco-univ").click(function() {
		$("#univ-rvTypes").html("<option>loading...</option>");
		$.ajax({
			type: "POST",
			url: "/order/wizard/adco/ajax/univ/_rvtypes.cfm",
			data: "",
			cache: false,
			success: function(msg){
				$("#univ-rvTypes").html(msg);
			}
		});	
		
		$("#univ-lengthFoot").html("<option value=''>- -</option>");
		
	});
	
});
