/*	DK file*/

$(document).ready(function() {
/*	$.get('/index.php', {'callback':'', 'a':'cusm', 'c': $('#fp_908').val()}, function(data) {
		$('#fp_909').html(data);
    }); */

	if ($('#fp_908').val()==null) {
    $('#fp_909').html("");
    $('#fp_type').html("");
  }
	else {
		$.get('/index.php', {'callback':'', 'a':'cusm', 'c': $('#fp_908').val()}, function(data) {
    		$('#fp_909').html(data);
    });
		$.get('/index.php', {'callback':'', 'a':'cust', 'c': $('#fp_908').val()}, function(data) {
    		$('#fp_type').html(data);
    });
  }

  $('#fp_908').bind('change', function() {
		$.get('/index.php', {'callback':'', 'a':'cusm', 'c': $('#fp_908').val()}, function(data) {
    		$('#fp_909').html(data);
    });
		$.get('/index.php', {'callback':'', 'a':'cust', 'c': $('#fp_908').val()}, function(data) {
    		$('#fp_type').html(data);
    });
	});

	$('#fp_type').bind('change', function() {
		$.get('/index.php', {'callback':'', 'a':'cusm', 'c': $('#fp_908').val(), 'type': $('#fp_type').val()}, function(data) {
    		$('#fp_909').html(data);
    });
	});

});