How to Read Values From Column

// executionContext is passed as function parameter
var formContext = executionContext.getFormContext();

// Get column value
var title = formContext.getAttribute("fieldname").getValue();
var caseorigin = formContext.getAttribute("fieldname").getValue();

// Get choice text
var caseorigin = formContext.getAttribute("fieldname").getText();

Source: attribute.getValue (Client API reference)