// JavaScript Document

//#####################################################################     
//###############     CopyRight Granville Design      #################
//###############       http://www.granville.nl       #################
//#####################################################################
//# @GD 2009 														  #
//# property.script.js												  #
//#####################################################################

// jQuery
$(document).ready(function() {
	
	

	// SELECT SELLER TYPE
	// Will hide and show unneeded fields
	var value = $("#sellerType").val();
	if (value == "" || value == 11) {
		$('#organisation').val("-");
		$('.organisationFormRow').hide();			
	}
	$("#sellerType").change( function() {
		var value = $(this).val();
		if (value == 12 || value == 13 || value == 14 || value == 15) {
			// check input ($(this).val()) for validity here
			$('#organisation').val("");
			$('.organisationFormRow').show();
		} else {
			$('#organisation').val("-");
			$('.organisationFormRow').hide();			
		}
	  
	});

});