/////////////////////////////////////////////////////////////////
// FileName : sell.js
// Description : JavaScript for the sell page
// Requires : 
//		jquery/jquery-1.2.3.pack.js
/////////////////////////////////////////////////////////////////

/////////////////////////////////////////////////////////////
// initialize the page and connection the events handlers
/////////////////////////////////////////////////////////////
$(document).ready(function() {
	$('#zipSelect').change(displayZipOtherTextField);
});

/////////////////////////////////////////////////////////////
// displayZipOtherTextField
// Client side script to display the "other" text input when
// 'Other' is selected in the ZIP dropdown
/////////////////////////////////////////////////////////////
function displayZipOtherTextField() {
	if(this.value == "other") {
		$('#zipOtherSection').show('normal');
		$('#zipOtherSection input').addClass('required');
	} else {
		$('#zipOtherSection').hide('normal');
		$('#zipOtherSection input').removeClass('required');
	}
}
