function ChangeReasonForMoving(parent, compValue)

    {

	if (compValue == "Other"){

		parent.otherReasonForMoving.disabled = false;

	}

	else{

		parent.otherReasonForMoving.disabled = true;

		parent.otherReasonForMoving.value = "";

		}

    }

	

function ChangeOccupation(parent, compValue)

    {

	if (compValue == "Other"){

		parent.otherOccupation.disabled = false;

	}

	else{

		parent.otherOccupation.disabled = true;

		parent.otherOccupation.value = "";

		}

	}

function ChangeLeadSource(parent, compValue)

    {

	if (compValue == "Other"){

		parent.otherLeadSource.disabled = false;

	}

	else{

		parent.otherLeadSource.disabled = true;

		parent.otherLeadSource.value = "";

		}

    }
